The programming-techniques tag has no wiki summary.
1
vote
1answer
10 views
RFID Limitations
my graduate project is about Smart Attendance System for University using RFID.
What if one student have multiple cards (cheating) and he want to attend his friend as well? The situation here my ...
0
votes
0answers
5 views
What kind of technology was used for uploading file in skydriver?
When I upload a file on skydriver page, a popup'll appear. Although I click any link to move another page, the popup still disappear. I don't know what kind of technology was used on this website. I ...
-4
votes
1answer
47 views
longest common subsequence with linear memory usage [closed]
I'm trying to find an algorithm which uses linear space of memory for:
Given two strings x and y over an arbitrary alphabet, determine their longest common sub sequence.
0
votes
1answer
15 views
Whats the term for websites that automatically resize for mobile?
Ive been googling this for a while but can not come back with a term or a way to do it.
Sites such as : http://www.beyond-design.co.uk/ automatically changes design based on the size of the ...
1
vote
2answers
34 views
Engineering impossible bugs? [closed]
How would you engineer an impossible bug? Is it even possible?
Take a simple example: Bob needs to add commenting functionality to his popular internet blog. It gets millions of visitors a month and ...
0
votes
0answers
75 views
Programming techniques to minimize memory use in R [closed]
I am working on a project that will involve a lot of manipulation of fairly large (Census) files using the R language. I expect to run into memory management problems, and am learning about the ...
0
votes
2answers
118 views
How to print frequency k words from more than 1TB of data?
This question was asked in my interview. I wanted to know about the solution.
Give a text file which contains one word in each line and size of the file is more than 1TB.
The task is to print only ...
1
vote
1answer
71 views
Regarding approach to solving sliding tiles puzzle
I have started reading "Think Like A Programmer" by V Anton Spraul. Here is the question.
The train technique mentioned in the book works fine for the example sighted in it.
I was attempting to ...
4
votes
6answers
128 views
PHP Variable vs Array vs Object
This is probably considered a really silly question, but I'm in the process of putting together a simple template system for a website and am trying to keep track of my variable usage and keep ...
0
votes
1answer
68 views
What Language/Technique Should I Consider For Logic Puzzles? [closed]
What Will The Language Be For?
I have recently developed an appetite for logic and math puzzles.
I'd like to use them as projects for learning a new language
(with an end goal of solving new puzzles ...
0
votes
1answer
18 views
When is it ever appropriate to have class and instance names be identical?
I've seen times when people will have code that looks like this:
class SomeClass { /* lorem ipsum */ };
int main()
{
SomeClass someClass;
/* dolor
sit
amet
*/
}
I feel ...
1
vote
3answers
75 views
What are some vital web development tools or techniques that you wish you had known earlier?
From time to time I'll learn about a tool or technique that is so useful or important that it becomes vital to my workflow. I always wish I'd known about the tool earlier.
That being said, I'm sure ...
0
votes
4answers
136 views
Why doesn't my responsive website look good when the viewport is small?
I have been working on this site for a few days now and am trying to get it to look great when the window/viewport is ANY size... Currently it looks pretty good on a widescreen or normal 1024 monitor ...
0
votes
1answer
75 views
What is the best technique to protect your trial-program from hacking?
I'm developing a .NET program, that has some native projects too and I want to publish it with trial capability.
I thought about the question "how to protect my creation?" and I know some of the ...
1
vote
1answer
36 views
Configuration Settings Strategy
In a CMS I've developed in PHP, I have configuration settings. They are kept in constants. I chose this approach because constants always have global scope, are easy to see in code when following the ...
0
votes
1answer
66 views
Continuous documentation [closed]
Consider I have an open-source project hosted on Github. I have a commenting in my codes in order to generate document from this comments automatically.
So, I want a tools that generate documentation ...
3
votes
2answers
92 views
Weird JSONP response in Facebook
I'm wondering what is the reason for using following JSONP response syntax:
Under URL: https://ect.channel.facebook.com/probe?mode=stream&format=json
There is:
for (;;); {"t":"heartbeat"}
...
0
votes
0answers
7 views
mathematical techniques for assigning quality-measure to assertions
Is anyone aware of mathematical techniques for assigning quality-measure to facts made in an online social experience that would be better than the Amazon 5 star ranking system (for example)?
-2
votes
1answer
68 views
How to refactor the code for the view part of a php mvc application? [closed]
I'm trying to learn building php applications using the mvc design pattern.
While working through some example code I came across this code for the view part of an mvc application.
Please have a ...
2
votes
1answer
84 views
How the following code ensures that only one connection to the database is created per browser?
I came across this piece of code that's supposed to ensure that only one database connection is created per browser so that the application sees improved performance due to the reduced number of calls ...
0
votes
1answer
88 views
Best way for storing shared contents between different kind of apps [closed]
We are starting a new project in my company and I would like to get some opinions on what you think is the best way to go.
There are 3 apps involved: one desktop app, an online app (accessible ...
-1
votes
1answer
545 views
Want Ideas for Final year project? [closed]
I am going to present my proposal for my final year project .And want some professional suggestions /ideas ?Kindly reply me with good and interesting ideas and Also that can be managed in six months ...
2
votes
1answer
195 views
For make faster compile go…less traits having?
EDIT
Complicating matters it appears that there is an issue (that is being worked on in Play 2.1 snapshot) where routes file change can also trigger the stampeding herd effect, which is to say, ...
2
votes
2answers
82 views
Can we have retain property with no getter and setters on Obj C elements?
Ok, so I was reading some articles regarding Good Programming Practices and I came across a statement which said that making all your Elements public for your classes isn't a good idea.. aka The ...
1
vote
5answers
84 views
what is the best architecture to show the frontend of a pure js app?
Basically, if you have a purely JS app (that get info from socket.io, or from a server with ajax request), and you need to show this data after processing it, what technique are you using?
Currently ...
0
votes
1answer
786 views
XAML Grid, Using Row/Columns Intelligently
I feel like there's something about grids that I'm missing, but I can't find it through Googling around.
For example, I want to be able to declare ten rows with ten columns, populate them with data, ...
13
votes
2answers
349 views
Scala slow builds: development approaches to avoid
First of all, incremental builds via SBT are pretty awesome, generally in the < 1sec range. However, sometimes you have to do a full clean/compile, or, in the case of incremental builds, you make a ...
0
votes
1answer
61 views
User defined data collection help ColdFusion
I am trying to figure out what is the best way to accomplish data collection.
Here is what I need to get accomplish:
I am building a CRM using ColdFusion & MySQL to collect data.
The data is ...
0
votes
2answers
612 views
Client Side Caching C# Forms Application
I have an application which query the database for records. The records can be thousands in numbers and this can shoot up the memory of the process and eventually leads up to a crash or slow in ...
0
votes
4answers
123 views
Base class “Object”, lazy/smart or stupid?
What I'm wondering is: if having a base class, that every* other class inherits from is a good idea or not in C++. Basically, it has the same interface as C#'s Object, which is:
*except for straight ...
0
votes
2answers
78 views
killing a thread dilemma
I found two ways to implement my TerminatableThread class.
I would like to ask for your pros and cons or opinion for each one of them, is there any difference?
First solution: using the __stop() ...
0
votes
6answers
132 views
If statements with return: Faster to use elseif?
Is it generally better/faster to do:
if (condition) return a
else if (condition2) return b
else return c
or
if (condition) return a
if (condition2) return b
return c
They both do the same thing ...
7
votes
2answers
71 views
Techniques for navigating through big source codes?
I'm currently using Notepad++ and organizing my code in levels: 1st level = namespaces; 2nd level = functions/objects; 3rd level = methods and so on. This way I can get a different perspective of my ...
2
votes
7answers
113 views
Should an array or a class be used for holding multiple variables in PHP?
Currently, I am creating a script that will parse information out of a certain type of report that it is passed to it. There is a part of the script that will pull a students information from the ...
1
vote
1answer
2k views
vbscript recursion programming-techniques
I am looking for some expert insight concerning recursion within vbscript.
From various examples found online I created the following code, which works by the way.
...
1
vote
0answers
42 views
Input/Output batching technique
I was reading a paper and i saw a mention of the I/O batching technique to minimize the overhead of I/O. Curious, I tried to find resources to learn about this technique, but could't find nothing ...
0
votes
2answers
335 views
Free Newsletters that teach you new coding techniques periodically? [closed]
Are there are any periodic newsletters/articles about unique coding tips/techniques that can be subscribed to? I want to expand my arsenal and I'm sure there's some experienced programmers out there ...
1
vote
1answer
99 views
Programming Techniques/Style for avoiding large switch/if blocks in C?
Was just a quick question to see if there are different ways you code something similar when it comes to evaluating conditional statements/control flow.
For example:
If Statements
Switch Statements
...
0
votes
0answers
145 views
What do people find difficult about function pointers? [closed]
Only few people are using function pointers in C. Yet, using function pointers to encode complexity has some beneficial properties, partly described in Rob Pike's Notes on Programming in C back in ...
1
vote
4answers
98 views
Is there a way to perform the “andand” technique in java?
As described here:
We connect the object and its method (or property) call with a logical
AND operator (&&), so the method is only invoked if the object is
truthy (not null). This ...
2
votes
5answers
249 views
Overloading operator[] for a template Polynom class
I am writing a template Polynom<T> class where T is the numeric type of its coefficients.
The coefficients of the polynom are stored in an std::vector<T> coefficients, where ...
7
votes
3answers
133 views
How to reduce the frequency of such errors in my code?
Take a look at this JsFiddle:
var requests = [
$.ajax("http://search.twitter.com/search.json", { data: { q: 'ashishnjain' }, dataType: 'jsonp' })
.done(function() {console.log("request");}),
...
0
votes
0answers
52 views
Technique to overcome different browser formating/display
I am developing a Website Updater. The front end uses normal HTML, CSS & Javascript. The backend uses Python scripts. The way it works is that certain p, b, etc HTML elements are part of the class ...
17
votes
6answers
472 views
advice on nested Java try/finally code sandwiches
I would like some advice on a technique I bumped onto. It can be easily understood by looking at the code snippets, but I document it somewhat more in the following paragraphs.
Using the "Code ...
2
votes
1answer
152 views
Loading files that meet certain criteria into hidden buffers in vim
I'd like to do some code refactoring in vim. I have found the following gem to apply transformations to all buffers.
:dobuf %s/match/replace/gc
My code is layed out with the root directory having a ...
0
votes
2answers
43 views
How to work on a project with limited access?
It's nice to have a complete project at your disposal to see how an application works when it's modified.
That's in an ideal situation. Now, say you have ftp access to a web site root with all the ...
2
votes
4answers
118 views
Is it better to roll all work into one loop or break it into several loops?
I am parsing a folder structure that is quite heavy (in terms of the number of folders and files). I have to go through all the folders and parse any files I come across. The files themselves are ...
12
votes
4answers
775 views
Techniques and tools for debugging problems on remote machines?
Users have been reporting problems/crashes/bugs that I can't reproduce on my machine. I'm finding these problems difficult to fix.
I've started using EurekaLog (fantastic!) and SmartInspect. Both ...
18
votes
11answers
2k views
How to efficiently do many tasks a “little later” in Python?
I have a process, that needs to perform a bunch of actions "later" (after 10-60 seconds usually). The problem is that those "later" actions can be a lot (1000s), so using a Thread per task is not ...
1
vote
2answers
281 views
Building a webshop frontend based on XML data in Symfony
I'm faced with the nice task of building some kind of almost webshop in Symfony. Almost meaning that I won't need a shopping cart or secure connection or anything. Just a frontend to display products, ...


