In computer science, the syntax of a programming language is the set of rules that define the combinations of symbols that are considered to be correctly structured programs in that language.
1
vote
3answers
84 views
use of ! in Ruby
I am new to ruby! And i am trying to learn the use of "!" .
I am aware that ! is included to so that the user's string is modified in-place; otherwise, Ruby will create a copy of user_input and ...
-1
votes
1answer
27 views
What does the double colon stand for in the Qt documentation?
I'm a newbie on Qt, and in the documentation, i don't understand a syntax prototype shown below:
Here is the syntax prototype of the function *addTab()* from QTabWidget class.
int ...
1
vote
4answers
53 views
Javascript vs jQuery Function Difference?
I've been making a program and I want to know the difference between starting two functions like so:
$(function () {
//content
});
and
function Name () {
//content
}
Also, why can't I ...
0
votes
1answer
35 views
invalid syntax error python3
can someone please explain this error message to me please
File "game.py", line 3, in <module>
import random
File "/usr/lib/python3.2/random.py", line 40, in <module>
from types ...
1
vote
0answers
29 views
C++ and C++/CLI cooperation
Can you remind me of how to make linking between C++ and C++/CLI?
I have it like this:
"hashtable" is a native code file with header where i do sample BIG RAM allocation, it compiles ok.
"BPSW" is ...
0
votes
3answers
41 views
begin end or brackets for bash?
I was trying to do some bash programming and wanted to make it somewhat structural.
My questions is if I want to make a block code embedded in a bracket like the Pascal begin & end or the C {}, ...
0
votes
0answers
23 views
Confused About MutationObserver
So I have been rattling my brain about using the MutationObserver and I haven't made any progress. I've read about it on the W3C site and in the MDN. When reading it in the MDN, everything made sense ...
1
vote
5answers
29 views
php for loop syntax: how to impose multiple conditions
For a daily calendar application, I want to print out the hours of the day from nine in the morning to eight at night. I am using the following syntax which works up through 12. However, then I want ...
0
votes
2answers
27 views
turning table rows into columns in mysql
Say I have a database similar to the following:
Table student_info:
id name
111 jon
112 dan
113 david
...
and table scores:
item_id student_id score
01 111 37
02 ...
2
votes
1answer
29 views
Method with variable arguments followed by non-varargs
I get that you can do something like this:
+(id) objectWithItems: (NSObject *) item, ...;
However I was wondering if it was possible to do something like this (I cannot get this to compile):
...
1
vote
4answers
80 views
Python: Removing unnecessary brackets?
I wrote a very simple function in Python, that prints out all prime numbers within a specific sequence.
It works fine, but the results it gives me have way too many brackets/parentheses in them. I'd ...
0
votes
3answers
50 views
php syntax for if statement with multiple conditions ( `||` as well as `&&` )
Context: On our website, we calculate whether an item/order meets the criteria for free shipping using an if statement evaluating if a value - 'ff' - is true. Depending on conditions met it sets the ...
-4
votes
0answers
52 views
Getting a “Parse error: syntax error, unexpected $end”, have checked everything I can think of [closed]
I am getting a
"Parse error: syntax error, unexpected $end in /home/lombo330/public_html/wp-content/themes/gazpomag/LaptopQuizResults.php on line 1"
everytime I run the following page. It is a ...
0
votes
1answer
22 views
I need a windows objective-c programming IDE that checks syntax and warns errors
I need a programming IDE for windows and objective-c. It doesn't need to compile and run or anything like that, but I really need it to check my code, and make sure it's legitimate.
After hours of ...
1
vote
0answers
36 views
R and data.table package syntax in eclipse
I'am using Eclipse and StatET to script in R.
I am using the great data.table package which introduce the syntax :=
For eclipse it is a syntax error but it is not the case in the context of this ...
1
vote
4answers
48 views
Use a variable returned in a getter method in another class
I am still learning but seem to fall at what should be very simple hurdles; my strong points seem to be with the logic of equations but I possess little skill at remembering and implementing functions ...
-1
votes
1answer
67 views
Padding arrays in C++ without translating indices
Here is what I have:
int t[MX];
Now, I'd like to rewrite that code so as to effectively add a single element to the beginning of that array, without having to translate all of the indexing by 1 in ...
0
votes
1answer
20 views
Parsing Smarty syntax subset in PHP
For a project I'm working on, I need to parse a tiny flow-control language in PHP.
Smarty syntax would be ideal, but we wouldn't be able to use Smarty's caching and would only need a small subset of ...
5
votes
1answer
43 views
Ruby trying to grasp a new notation. (inject(: ) vs select(&:even?); why one has &?)
So, I've just learned that instead of writing things like:
[1,2,3,4,5].inject {|x,y| x + y} => 15
I could write
[1,2,3,4,5].inject(:+) => 15
I also learned that instead of writing
...
2
votes
2answers
68 views
What is the purpose of naming a function that is a value of a property in an object?
var timers = { //#1
timerID: 0, //#2
timers: [], ...
0
votes
2answers
24 views
MySQL Syntax Error on complicated query
Sorry for the derp question (as I'm sure it probably is), but after going over the manual and through Stack Overflow for answer on this one, I'm still unsure of what's wrong with this database query.
...
0
votes
4answers
20 views
How do I list total number of records with similar name in SQL?
Sorry for the bad title, I couldn't think of a way to describe it.
I have a SQL table that contains utility poles and their construction spec and the quantity.
I need to create a query that will ...
-1
votes
1answer
41 views
Context-free-grammar to represent regular expressions
I'm trying to make a context-free-grammar to represent simple regular expressions. The symbols that I want is [0-9][a-z][A-Z], and operators is "|", "()" and "." for concatenation, and for sequences ...
2
votes
3answers
50 views
javascript jquery like construction
I wonder if it is possible to create some sort of construction where one could do the following:
$("some element").somemethod(arg), which would be exactly the same as saying $.somemethod("some ...
1
vote
4answers
48 views
Function call syntax oddity
I was experimenting with something on the Python console and I noticed that it doesn't matter how many spaces you have between the function name and the (), Python still manages to call the method?
...
0
votes
4answers
105 views
Why does this java code compile
I came across this code
public class Main {
static int someint;
public static void main(String[] args) {
someint = -0;
print();
}
private static int print()
{
...
-2
votes
3answers
21 views
jquery help understanding a specific variable is following code
I'm pulling this code out of a tutorial that works... I don't understand where index comes from ??
$('.thumbnail_container a.thumbnail').each(function(index) {
var remainder = (index%max_C)/100;
...
0
votes
2answers
53 views
Bash 'if' variations
Is there any difference between the following if statements in bash?
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
if [ -z "$debian_chroot" -a -r /etc/debian_chroot ]; then
...
0
votes
1answer
22 views
CKEditor - Modify BB Code Plugin to generate Wiki Syntax?
I've been looking for a WYSIWYG editor that generates Wiki Syntax output for a long time, but haven't found anything so far. So, the closest I've found to what I'm looking for is CKEditor which has a ...
-4
votes
1answer
59 views
Python Help with syntax [closed]
hey guys i am reading a book about python and i decided to try
and write the code for a cipher program their myself before looking what he did
any ways i encoutered a problem
the problem is in the ...
1
vote
1answer
26 views
Using Anaconda and Spyder, I keep getting SyntaxError: invalid syntax
Newbie here.
I'd been running code on my Windows desktop using Anaconda and 3.3.1. All good. Everything works.
When I tried running it on my laptop (also Windows, running the same versions), I keep ...
4
votes
5answers
82 views
Simple way to test if multiple variables have same value, ruby
Is there a simple way of testing that several variables have the same value in ruby?
Something linke this:
if a == b == c == d #does not work
#Do something because a, b, c and d have the same ...
0
votes
2answers
38 views
date object returns different date when parsing using D3.time.format
var startDate = new Date('2013-05-13');
var date_format = d3.time.format("%m/%d");
if I do
startDate = date_format(startDate);
I get "05/12" instead of "05/13". Anyone has a clue why is this ...
0
votes
1answer
36 views
How to inline combine arrays in JavaScript?
Given two arrays, how to to pass a combination of both to a function, preferably with inline syntax?
var current = [1.01, 3.01, 2.42, 4.31];
var preview = [0.89, 3.15];
/*
* pass both combined to a ...
1
vote
1answer
36 views
New to Postgres. Can you help me with a couple simple statments?
I'm very familiar with MSSQL but I need to work with some postgres stuff today. The end goal is to return the new id of a table for use elsewhere but since I'm unfamiliar with the syntax of postgress, ...
1
vote
2answers
54 views
why use javascript callbacks when cleaner syntax is available?
I'm trying to learn some node. So far, so good. But, being pretty new to javascript and I don't really get the point of using callbacks when a cleaner and more readable (at least to me) syntax is ...
0
votes
2answers
55 views
What is the difference between “-%>” and “%>” in Rails 3?
What is the difference between :
<% @posts.each do |p| -%>
<%= p.title %>
<% end -%>
and
<% @posts.each do |p| %>
<%= p.title %>
<% end %>
and is there any ...
0
votes
0answers
24 views
D3 convert geojson to topojson syntax
I am following the syntax to convert geojson to topojson as described here
https://github.com/mbostock/topojson/wiki/Command-Line-Reference
I want to make sure the properties are on the generated ...
0
votes
3answers
32 views
Syntax for “or” & “and” statements
what is the proper syntax for putting together and & or statements?
I am trying to implement some code to validate the data a user is inputting. I have a segmented control, a text view and a ...
0
votes
1answer
36 views
VB.NET - Grouping statements on one line
I want to put several statements on one line, including conditional statements that need to be grouped together.
I can do this:
x += 20 : y += 10 : If x > 400 Then x = 0
I want to have more than ...
0
votes
0answers
41 views
Understanding Ruby Classes and Modules
I have a number of questions regarding ruby classes and modules. I have written a number of test files to kind of explore them further that are too long to post here ...
1
vote
2answers
36 views
Ruby on Rails - link_to with parentheses
Sorry, but this is a newbie question.
There are also a lot of questions on "link_to" already, but none answer my question, which I don't think is really specific to link_to...
Creating a link like ...
0
votes
3answers
67 views
“If” “else” statement with syntax error [closed]
having problems with the following code syntax error at line 11, 12, 13.
// Get the field values
var DP = +getField("DESIGN_Projection").value;
var TC = +getField("ASBUILT_Top_of_Concrete").value;
...
0
votes
1answer
17 views
Finding and Filtering XML Data
I have an XML document here:
<?xml version="1.0" encoding="utf-8" ?>
<CATALOG>
<CD>
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
...
3
votes
0answers
52 views
gluDisk() function opengl
I am trying to create a function in my program that draws disk. I have a .h file called drawShape where I have all my drawing functions there. I am trying to add drawDisk to it, as seen below;howerver ...
0
votes
1answer
22 views
Actionscript 3 - XML syntax?
Does anyone know how the XML syntax works in Actionscript 3? I copied over my XML file into AS so I can export an independent SWF, but it's giving me a whole bunch of syntax errors "1093: syntax ...
-1
votes
3answers
88 views
Assignment operator in Go language
Lately I was playing with google's new programming language Go
and was wondering why the assignment operator := has a colon in front of the equal sign =
Is there a particular reason why the authors ...
1
vote
2answers
41 views
How to put a space between two SQL columns after joining them?
I have joined two columns, first name\last name into one and named it with an alias which is all good. But how do I put a space between first and last name?
au.first_name || au.last_name Name
0
votes
1answer
49 views
Converting old C99 program to C11 using MinGW
I'm trying to convert an old program that is written in C99 to C11 to be compiled with MinGW. I came across this line of code here
contenu[/size] = buffer;
and this code
output[k] = ((S[(S[i][/i] ...
3
votes
3answers
27 views
Building a syntax checker
I am building a app like a compiler with my own script language. The user will enter the code and the output will be another app.
So I need tell to user if some line is wrong and why it is.
But I ...




