Use this tag for PROGRAMMING QUESTIONS that are independent of any particular programming language.

learn more… | top users | synonyms (1)

0
votes
0answers
11 views

Is it possible to design a Class so that its instances only exist as items of a Collection?

I am trying to develop a conceptual model (object-oriented) of GPS-collected data. Usually, common classes are Track, which represents an ordered sequence of Trackpoints, and the class Trackpoint ...
0
votes
1answer
15 views

How to send email asynchronously but as soon as possible?

I've just read this excellent question about the advantages of sending an email asynchronously vs synchronously. I fully agree with the approach that the single answer concludes, which is: store the ...
1
vote
0answers
13 views

What conceptual difference between traits and multiple inheritance?

From what I've read and what I've seen, I consider multiple inheritance as a bad practice, not by itself but because it leads beginner to use everywhere where more elegant design patterns might be ...
-1
votes
1answer
33 views

Is it a good idea to define variable names with utf-8 characters? [closed]

Of course this question is only relevant to programming languages that allow utf-8 characters in variable names (eg. python3, golang...) When I need to write some code from scientific papers, I have ...
1
vote
2answers
28 views

Regular expression which matches at least two words from a list

I have a list of words - "foo", "bar", "baz" - and I want to write a regexp which would match strings which contain at least 2 of them. E.g., "foo baz" should match while "ba foo z" should not. The ...
3
votes
3answers
73 views

finding the biggest difference between sorted array values

I have an array that may look like this... var array = array(1,4,7,8,12,15); The values in the array will always be integers, and always will go up, or could be the same as the previous, but at ...
1
vote
0answers
16 views

Integration testing and images

I'm writing an app that converts different images to JPG. It operates over a complex directory structure. There, a directory may include other directories, image files (JPG, GIF, PNG, TIFF), PDF ...
5
votes
2answers
93 views

Quickly finding if there are 2 or more equal numbers

I have an array of N different numbers that change frequently. After every change there is a chance that two or more numbers have become equal, and I don't want that. The number N can be as big as the ...
0
votes
3answers
47 views

Overlapping line segments in 2D space

I need to find whether two lines overlap each other. I have the intersection code which returns 0, if two lines are parallel. But then I need to know if these two parallel lines overlap. Edit: A ...
0
votes
0answers
28 views

Term for accessor/mutator method

I am a bit tired of using "accessor-slash-mutator" description for a methods that may work as both accessors and mutators. Is there a single-word term for such methods in OOP terminology?
0
votes
0answers
16 views

Call-by-name evaluation and foreach loop

I faced this problem for the first time and I can't figure it out. Let's say we have an array and a foreach loop. Something like this: var v = array(10,20,50); var i = 0 write(foo(v, v[i++])); ...
0
votes
2answers
27 views

Applying various effects to images

I know how to apply two effects to images -- blurring and making them grayscale. However, I would like to expand my knowledge further and learn more things of this nature. I decided to Google them ...
1
vote
4answers
86 views

Ring buffer: Disadvantages by moving through memory backwards?

This is probably language agnostic, but I'm asking from a C++ background. I am hacking together a ring buffer for an embedded system (AVR, 8-bit). Let's assume: const uint8_t size = /* something ...
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 ...
11
votes
3answers
82 views

Internationalization: Are IP Addresses entered in the same format for all cultures?

I know that IPv4 addresses are written using the dot-decimal notation. What I don't know is if each of the numeric characters entered for an IP Address is always an Arabic numeral (such as 1,2,3...) ...
6
votes
5answers
76 views

Are pointers stored as integers?

Are pointers in C/C++ (or any language for that matter), integers? A pointer holds a memory address, from 0 to the upper limit of your memory. So in math terms, a pointer could be considered a ...
0
votes
0answers
27 views

Why is the BMP file format stored in big endian

I have two BMP files, a windows screenshot and a linux generated file using GIMP. What I noticed is that all the data in the headers is stored in big endian format. The biWidth, biHeight and biPlanes ...
4
votes
2answers
41 views

Big O complexity of loop with two independent inner loops

I have a function that depends on three variables, T, N, and M. The loop is the following: for each t from 0 to T { for each n from 0 to N { process(n,t); } for each m from 0 to ...
2
votes
4answers
64 views

Finding shortest path for equal weighted graph

I have a graph which is of equal weights. How can I find the shortest path? We can use DijKstra's Algorithm and find the shortest path. I think backtracking will be used in this case. But is there ...
2
votes
4answers
163 views

How to find the longest substring with no repeated characters?

I want an algorithm to find the longest substring of characters in a given string containing no repeating characters. I can think of an O(n*n) algorithm which considers all the substrings of a given ...
0
votes
1answer
13 views

Julia Set fractal and location on screen

I am learning how to make a Julia Set fractal. I am using this as a reference. I know the math theory behind it very well. I can compute it manually, too. However, what I do not understand is how ...
-1
votes
2answers
166 views

I am a front end developer. What language should I learn next? [closed]

I am a front end developer. (At least that is what my paycheck says) I want to become a better developer as a whole, or full-stack dev if you may. I currently spend all day writing JavaScript. 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
3answers
51 views

Object reference exactly

Demo demo=new Demo(); Here demo is a reference variable. Are reference variables equal to object references... ? If no then please explain the concept of object reference.
3
votes
1answer
74 views

String permutation on linking trailing character

I'm writing a game for some highschool kids to learn about computer science/math in general. But I'm also stuck in a question I've designed for myself, and want to see if there's a more efficient way ...
5
votes
2answers
64 views

Intersection of a mesh with a parametric surface

I'm wondering how a precise algorithm can be written to compute the frontier of the surface of intersection between a parametric surface f : R^2 --> R^3 and a triangulated mesh. I've thought to a ...
0
votes
2answers
41 views

How does an assembly differ from a build?

I know that to build means either to compile from source code or the artifact itself. But what is an assembly? I tried to search but could not find the difference. E.g. in .NET, assemblies are EXE ...
0
votes
1answer
58 views

Cormen Wrestler's rivalry BFS

In Cormen question 22.2.6 we have the wrestler problem. Where it says there are N wrestler i.e N nodes and r pairs to rivalry i.e. edges and we need to divide the wrestler into good and bad guys such ...
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), ...
0
votes
0answers
43 views

How do I calculate a printed font's size given DPI of the target and point size of the font?

I have an application that is printing out data to a printer. For now, I have hardcoded the font size as 18 point, calculated all print related coordinates and offsets (for a certain 18 point font) ...
-7
votes
0answers
52 views

All languages: Can I check for a null object in the same if statement? Are the && statements both processed? [closed]

This question at the moment is specifically aimed towards PHP but still I wonder about all other programming langauges too. Suppose I have an object of some sort that could be null, and an if ...
0
votes
0answers
25 views

Interesting techniques used in gaming programing [closed]

During one lunch time, my manager commented me that there are techniques used in the gaming industry (Actvision, Naughty Dog, 3dRealms, Rockstar) that are far more advanced than the ones that we, in ...
1
vote
1answer
24 views

Can I mark a database record as “in use”?

Let's say I have a table (let's call it myTable) on a database server, and I'm writing a desktop client application that allows you to modify records in myTable. I don't want two users to be able to ...
0
votes
2answers
53 views

What is an alternate solution to multiple FOR loops?

It is always recommended to avoid multiple for loops in your programming. But there are some cases where we have to use it. Is there any solution ("good practice" or design pattern) with which we can ...
0
votes
2answers
53 views

Detect and extract changing numbers in list of strings

Let's say I have a list of of audio file names (it could be any list of strings with continuing numbers in it) that have different naming schemes but all of them contain the track number in their file ...
6
votes
1answer
63 views

What “time precise” garbage collection algorithms do exist?

Which garbage collection algorithms can recognize garbage objects as soon as they become garbage? The only thing which comes to my mind is reference counting with an added cycle-search every time a ...
0
votes
1answer
34 views

Can a unit test not be automated?

I know how this sounds..but today a teacher told us that unit tests should be automated. Should..How can I have a unit test which is not automated? I believe that the nature of unit test is, that it ...
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 ...
1
vote
3answers
52 views

Why non-default arguments can't follows default argument?

Why this piece of code throwing a Syntax Error ? >>> def fun1(a="who is you", b="True", x, y): ... print a,b,x,y ... File "<stdin>", line 1 SyntaxError: non-default argument ...
0
votes
0answers
22 views

How do I make a private search engine for a large swath of text?

I've got a lot of plain text files as part of a historical archive: $ du -hs . 347M . $ ls -l -rw-r--r-- 1 nerd nerd 211K Jul 6 2005 AAAAAA0.txt -rw-r--r-- 1 nerd nerd 225K Jul 6 2005 ...
-3
votes
2answers
61 views

Why the worst case for Dijkstra is E + VlogV?

Shouldn't it be E*(logV)? Reference: Dijkstra's algorithm
1
vote
1answer
36 views

Can I use a valid email address as a linux directory name

I thought this would have been asked a million times already, but my search didn't turn up anything. Can I safely use an email address as a linux directory name? In other words is any valid email ...
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 ...
0
votes
1answer
13 views

Literal Characters in Regex Character Classes

While looking through some regex stuff, I found that you could put Literal Characters inside of a character class. I know when using character classes you can use ranges to shortcut instead of ...
0
votes
1answer
47 views

In a PDF417 barcode where number of columns are fixed, how would I calculate the number of rows required for some text?

I need to generate a PDF417 barcode from some text. I have an API (that I didn't create) that generates a PDF417 barcode given the data, number of rows and number of columns (among other parameters ...
2
votes
1answer
78 views

Is switch just as bad as if?

I read on StackOverflow that using if(someCondition) { someCode(); } else { alternateCode(); } can be inefficient due to susceptibility to branch misprediction (see this question for ...
0
votes
0answers
19 views

How to Detect New DNS Domain Registrations?

I recently acquired some domains for .net and .com and found that Google apparently found them within days although I did not link them from anywhere. So I wondered if there was a way for regular ...
1
vote
1answer
43 views

Why should software objects have the least scope?

Why is it good to keep the scope of objects "most limited"? I've been advised to do so, and have also read it in Linden's Expert C Programming, but couldn't come up with an example where a large scope ...
-3
votes
1answer
32 views

What languages can be learned with php so that it is useful career wise? [closed]

I am a developer with descent knowledge of core php and learning new framework,i.e. codeigniter. I would like to know what other languages can be learned with php so that one can have better earning ...
3
votes
1answer
54 views

String algorithms where runtime doesn't depend on data contents

There is classic algorithm to check whether two same length strings are equal while preventing a timing attack. foldl bitwiseOr 0 (zipWith bitwiseXor firstString secondString) == 0 In such a ...

1 2 3 4 5 124