A programming language is an artificial language designed to express computations that can be performed by a machine, particularly a computer.
-1
votes
0answers
23 views
What programming language for this little server?
C is the only language where I have considerable API knowledge (UNIX system calls). I have working knowledge of several other languages, such as perl, python, javascript (leaves the option for ...
-6
votes
0answers
25 views
machine learning [closed]
best programming language to learn ML algorithms (i know c,c++ ,Java(learning))?can anyone suggest me please! and help me with some good resourse to practice ML algorithms?
Thank you,
0
votes
1answer
39 views
Call 2d std::vector array from C++ to Fortran 90 error
I am trying to call the following C++ function from Fortran 90.
//Filename ctest.cpp
#include<iostream>
#include<vector>
extern "C"
{
extern struct{
std::vector< ...
1
vote
0answers
49 views
Why is .Net and Java so very similar? [closed]
I came across these posts on interview questions for Java and what struck me was how very similar the answers were to .Net. So I was wondering if there was a reason for this similarity? (Did some of ...
-1
votes
2answers
66 views
Are there any other S-exp based languages apart from the Lisp dialects? [closed]
Are there any other S-expression or polish prefix notation based languages apart from the Lisp dialects?
It doesn't have to be a functional programming language or be related in some way to Lisp.
...
0
votes
0answers
14 views
Broke Tail recursion?
I have studied programming language course, I have this variant of scheme code in the slide ,
;(listof any) -> (listof any[no-cons])
(define (remove-pairs l)
(cond
[(empty? l) '()]
...
0
votes
0answers
69 views
Avoding circular refernces when implementing closure?
I'm currently implementing a dynamically typed language that compiles to byte code.
I've come to the point where I would like to have closures in my language, the functionality was not hard to ...
-1
votes
1answer
46 views
Good language to learn? [closed]
I want to write computer games that I can share with other people. Currently all of my games are written with python and pygame. I certainly wouldn't say I am a master at python, I just want to learn ...
-4
votes
0answers
30 views
I've tried several times, several different ways, and I'm starting to wonder if it's just me [closed]
I'm working on several repositories, the majority being Javascript, but with one having several components such as Git, shell, Java, CSS, and several others over the course of several layers within ...
0
votes
0answers
14 views
Advice on how to get Started with Simulation project on Ubuntu [closed]
I would like to do a final Year Computer Science project on the research area Simulation, to be specific, I would like to simulate a chemistry titration process. I am using Ubuntu 12.04. Could anybody ...
0
votes
1answer
29 views
Daemon Socket server in C
I have successfully created a C program which runs an infinite loop waiting for a connecting through sockets.
I would like to make it a daemon and be able to start and stop it. How can I do it? What ...
0
votes
2answers
39 views
Which languages support while or do/while loops with automatic iteration indexing?
As the title suggests, which languages support while or do/while loops with automatic iteration indexing?
In other words a [while] or [do/while] loop that provides the iteration index automatically ...
0
votes
1answer
52 views
Web Interface for embedded system [closed]
I have an application which runs on an embedded system (400MHz, 64Mb of ram and 128Mb of free space on the sd card). I would like to build a Web Interface to communicate with the application. To do ...
-6
votes
0answers
20 views
(Programming Language) dangling pointer solution Locks & Keys [closed]
There are two methods to solve dangling pointer problem.
Tombstone and locks&keys are those, but I don't know why I can't use locks&keys solution in stack.
0
votes
1answer
18 views
Max int and range values confusiion
I got slightly confused and I on the web I can only see a half of the answer.
It is said that UInt16 has the range of values 0-65335. Also the total number of values in16 can hold is 2^16 (65336), the ...
5
votes
1answer
35 views
Compound assignment operators, what happens if the value is modified (in the meanwhile)?
Consider the following pseudocode (language agnostic):
int f(reference int y) {
y++;
return 2;
}
int v = 1;
v += f(v);
When the function f changes y (that is v) while evaluating v += f(v), ...
1
vote
3answers
63 views
O(1) Event Publish to N Subscribers
Are there any data structures/languages/algorithms/operating systems/etc that enable o(1) event/data publishing to n items? Typically when one sees pubsub implemented it involves traversing through a ...
0
votes
0answers
33 views
Easy and simple script/macro language
I'm making Ruby application and I want to provide a way for users to customize it without going too much into programming. Currently I've already plugin support (any Ruby file in ./plugins/ will be ...
2
votes
3answers
73 views
What exactly happens when there is an exception [closed]
This may be a very simple question,but just want to understand what exactly happens when there is an exception ,Is there a memory leak while doing operations in the memory or what is it.This is not ...
0
votes
0answers
18 views
Visual Dataflow Language Program Model
I am working on a Visual Dataflow Programming Language Model - the language can be thought of as a simplified Yahoo Pipes dialect.
I am looking for a way to implement the model of representing the ...
-2
votes
1answer
27 views
Why desktop applciations are developed in interpreter based languages like Java , Ruby and Python [closed]
I am seeing a desktop applications like todo-list , jEdit etc which are developed by interpreter languages such as Java , Python , Ruby etc.
These applications are easy to develop in those ...
0
votes
0answers
19 views
Multimethods vs Interfaces
Are there languages that idiomatically use both notions at the same time? When will that be necessary if ever? What are the pros and cons of each approach?
Background to the question:
I am a novice ...
0
votes
0answers
16 views
Razor view engine language specification
Is there a language specification for the Razor view engine used in the ASP.Net MVC framework?
(I am interested in understanding more about how the Razor view engine syntax works from a programming ...
7
votes
1answer
112 views
Commutativity in operators
In C#, there is not in-built notion of commutativity in the language. That is if I define a simple Vector class for instance:
public struct Vector
{
private readonly double x, y, z;
...
...
0
votes
3answers
30 views
checking/verifying python code
Python is a relatively new language for me and I already see some of the trouble areas of maintaining a scripting language based project. I am just wondering how the larger community , with a scenario ...
3
votes
1answer
188 views
Traits vs. Interfaces vs. Mixins? [closed]
What are the similarities & differences between traits, mixins and interfaces. I am trying to get a deeper understanding of these concepts but I don't know enough programming languages that ...
2
votes
2answers
53 views
When are Javascript events executed?
When I look at JS code like:
socket = new WebSocket(server);
socket.onopen = function (evt)
{
// STUFF
};
Im always a little bit confused. If you ...
1
vote
0answers
94 views
Why do I need to write let to declare a variable?
In Haskell I don't need to write anything to declare a variable. In C++ I need to write auto, which as far as I know works in an analogous way to rust's let.
Isn't it a step back to use let to ...
0
votes
1answer
27 views
moving human 3d model that was made in blender/sculptrist in java
I was doing a human 3d model in sculptris and blender and i wanna ask how do programmers make the 3d model run/move with in the java or other programming langauges. do they do it within the ...
0
votes
1answer
21 views
Redirection of stdout to stdin in other languages that BASH when you fork or execute a program
I need to code a program which execute several subprograms, using pipes and redirection. So since I need to use some data structures and functions I want to avoid use Bash for that matter. So far, I ...
2
votes
4answers
95 views
Difference between C and JAVA program
I have two examples of the same program. This program has a function which creates an array and returns the pointer to array.
First program (in C):
#include <stdio.h>
#include <stdlib.h>
...
1
vote
1answer
80 views
Why size of void pointer is 4 on Windows 64-bit platform
I have the following program that prints 4. I am running this program on Windows 7 64-bit. Shouldn't it print 8 for 64-bit platform? Thanks in advance.
#include <stdio.h>
void main()
{
...
1
vote
4answers
147 views
Is there a way to refer to the current function in python?
I want a function to refer to itself. e.g. to be recursive.
So I do something like that:
def fib(n):
return n if n <= 1 else fib(n-1)+fib(n-2)
This is fine most of the time, but fib does ...
5
votes
5answers
56 views
Is string “1a” an error for lexical analyser or not?
I am making a basic lexical analyser in Java for my semester project and I am at conflict on a concept with my subject teacher.
My view is that in general if an input like "1a" is given to lexical ...
1
vote
1answer
30 views
Do all interpreted/dynamically typed languages store everything on the heap?
I first wondered why a language would store everything on the heap, when it has serious performance cost. For example, Java folks avoid creating unnecessary objects because the performance differences ...
-1
votes
1answer
28 views
How do you make things on your website not viewable on your mobile website?
I have a play game tab on my phone but I don't want it to be on the mobile view since there's no point since it won't work.... How can I take the tab off? I don't know anything about the mobile view ...
5
votes
2answers
54 views
Technical name for code not part of any function
What would be the technical term for code in scripting languages which is not part of any function and is executed first when the script is imported?
For example, in python:
import anything
#what ...
0
votes
3answers
56 views
What is the purpose of the unsigned right shift operator “>>>” in Java?
I understand what the unsigned right shift operator ">>>" in Java does, but why do we need it, and why do we not need a corresponding unsigned left shift operator?
-2
votes
4answers
40 views
Which language is suitable for Linux and related programming? [closed]
What would be the best language if I want to develop a range of Linux related things. I want to make kernel patches, Linux programs, contribute with other projects, etc. Where and with which language ...
-5
votes
1answer
77 views
Alternative tutorials on CUDA? [closed]
What tutorials on CUDA are available as an alternative to “CUDA: Supercomputing for the masses”?
-5
votes
0answers
32 views
How do I write an assembly language program that will store all the ASC codes into an array X? [closed]
I am writing a program and got stuck on this. How do I write an assembly language program that will store all the ASC codes into an array X?
Thank you
-2
votes
3answers
61 views
Is Javascript a programming language? [closed]
Since V8 compiles JavaScript into assembler, may we say that in the Chrome environment JavaScript is not anymore a script language but a programming language instead?
V8 compiles JavaScript source ...
17
votes
5answers
401 views
Is it possible to enumerate computer programs?
Suppose you have to write a program that will test all programs in search of one that completes a specific task. For example, consider this JavaScript function:
function find_truth(){
...
0
votes
2answers
58 views
SDK development in multiple programming languages [closed]
I am working to develop an SDK that will allow the users to use it and write code in C# or Java.
To achieve this most optimally, do I have to write the SDK in both languages? That would be a lot of ...
1
vote
3answers
92 views
how to the output of 4 digit number to 2 digit
I want to write the last 2 digit of a year. For instance, if I started with an input value "2012" I would want to generate an output value of "12". Is they any option in fprintf in which it will take ...
1
vote
3answers
52 views
How is PHP so high on this benchmark if it's said not to be as scalable as other frameworks?
http://www.techempower.com/benchmarks/#section=data-r5
This benchmark shows PHP consistently on the top 5 of several measurements. This contradicts the consensus that it does not scale as well as ...
0
votes
0answers
63 views
Lines of code ever written [closed]
Considering how long programming languages have existed, how many lines of code would one suppose has ever been written since the beginning of the electronic computer, as we know it?
Now, obviously ...
0
votes
1answer
14 views
Simple program to compute and track grades
I was wondering what the best language / environment to code a program that has a GUI which allows you to keep track of grades by first setting the percentages for each graded section of a class (ie. ...
0
votes
1answer
23 views
How to make simple sql modifications from shell?
I have never made any software for linux, but it would be better for me now. I would like to write a simple SQL modification software that I can run via terminal and don't need to run php, apache. ...
1
vote
1answer
15 views
Regexp performancing in different languages
If in PHP, some regex pattern is better for performancing than second pattern, this means that this pattern will also better in JAVA's or in javascript's or in postgreSQL's regex?
That is, in ...


