350 questions
2 votes
0 answers
48 views
how to define a PROC in MASM/ml64 using a reserved word or instruction mnemonic [duplicate]
I'm working on writing a C compiler, as a side project. My compiler emits a .asm file, which I run through ml64.exe and linker to produce an executable. If my input C file has a function definition ...
2 votes
1 answer
79 views
Label or instruction expected at start of line while using NASM
I'm getting the error: label or instruction expected at start of line in the .data section when defining a string made up of bytes: st2 db "num3>num1,2", 0xA, 0xD I looked at the ...
0 votes
2 answers
129 views
Request for heeds when using '_' <underscore> as identifier in C (and interop with other languages)
In a C language library I wrote, I found most of the operations are too verbose, so I tried to make it terse - through use of macros and by reserving the _ identifier. As I understand, identifiers ...
1 vote
1 answer
201 views
Identifiers with leading underscore defined in a linker script
Per the C standard section 7.1.3 Reserved identifiers All identifiers that begin with an underscore are always reserved for use as identifiers with file scope in both the ordinary and tag name spaces....
-1 votes
1 answer
123 views
Can a Swift user-defined Type be named `Type`?
I'd like to create an enum (or class, or struct) named Type in one of my objects. This object name cannot be typed normally, as it "conflict with the 'foo.Type' expression". However, like ...
0 votes
0 answers
44 views
"reserved word in the urls" error in python code
This is my error message: {"requestId":"b29fdb37-816d-4cde-b8ee-a9181f27a7a4","errorCode":"InstanceReservedWordNotAllowedInEntryKey","errorMessage":&...
2 votes
1 answer
138 views
Why can't a Scheme macro with the name "if" be defined?
Here is a very simple Scheme macro that works, running on MIT/GNU Scheme 12.1: 1 ]=> (define-syntax example (syntax-rules () ((_) 'ok))) ;Value: example 1 ]=> (example) ;...
0 votes
0 answers
35 views
MySQL query works in version 5.6 but returns errors in mysql version 8 [duplicate]
I am not SQL expert therefore am scratching my head why this query would not work in MySQL-community-server 8.0 but it works absolutely fine in MySQL 5.6. I have recently migrated from mysql 5.6 to ...
0 votes
0 answers
105 views
federated mysql query with a reserved word column name fails to run in Redhsift
I have a remote connection into a mysql database from Redshift. Mysql table has a column year_month which is a reserved word in mysql and since this table is already populated and applications are ...
0 votes
0 answers
35 views
Some reserve words in R language are creating problem for Text Analytics
I have Document Term Matrix turned data frame with 352 observations of 1342 variables. Now when I try to run a randomforest model I get the error: model <- randomForest(labels~ ., data = train_df, ...
1 vote
1 answer
275 views
What is wrong with operator"" _Bq?
At [over.literal] I read, in the list of examples, that double operator""_Bq(long double); is valid, whereas double operator"" _Bq(long double); is ill-formed, which is ...
0 votes
1 answer
78 views
Sybase: enabling LIMIT
Which one of these three statements is the best one to enable the keyword LIMIT? SET OPTION RESERVED_KEYWORDS = 'LIMIT'; SET OPTION PUBLIC reserved_keywords = 'LIMIT'; SET OPTION PUBLIC....
0 votes
1 answer
457 views
Go back to command line in bash
I am using this code to exit my program: exit(){ clear exit 0 } This clears the screen, but does not exit the script and just leaves a blinking caret in the terminal. Is it possible ...
2 votes
1 answer
553 views
Will guid generation logic ever generate 00000000-0000-0000-0000-000000000000?
I have run into a scenario where a customer may have a nullable guid for me to compare to in my database. I could go ahead and rewrite my call stack to make the object nullable, but I also don't want ...
0 votes
1 answer
184 views
How to use columns BY and OR in Google sheets query? [duplicate]
Currently I use Google Sheets as a database, which has more than 1000 columns from A to AGH. If the query contains column BY or column OR, the result will be null. How can I avoid that column names ...