Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

75
votes
24answers
51k views

How do you remember if 1 for TRUE or FALSE? [closed]

I always forget :S How do you remember which number stands for TRUE or FALSE? (when I started css the colors black and white always confused me. Is white #FFFFFF or #000000. A trick I came up with: ...
40
votes
31answers
7k views

What is your favourite MATLAB/Octave programming trick? [closed]

I think everyone would agree that the MATLAB language is not pretty, or particularly consistent. But nevermind! We still have to use it to get things done. What are your favourite tricks for making ...
39
votes
17answers
6k views

PowerShell Tips & Tricks for Developers [closed]

What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?
18
votes
6answers
1k views

How do I show sprites in the border on C64?

I've seen cool C64 demos showing sprites in the border area of the screen. It shouldn't be possible; I think they managed to fool the graphics chip somehow... How exactly did they do it?
14
votes
25answers
2k views

What do you do to keep your coding skills in shape, and how often?

What would you say are your best kept secrets to keep yourself in top programming shape?
12
votes
5answers
2k views

Which are your favorite GDB tricks? [closed]

Which is your favorite macro/trick in gdb? Have you written any good macros for improving language integration? What's your best way of making the debugging experience inside gdb less painful?
12
votes
25answers
7k views

What is your latest useful Perl one-liner (or a pipe involving Perl)? [closed]

The one-liner should: solve a real-world problem not be extensively cryptic (should be easy to understand and reproduce) be worth the time it takes to write it (should not be too clever) I'm ...
12
votes
10answers
2k views

How to write a self reproducing code (prints the source on exec)?

I have seen a lot of C/C++ based solutions to this problem where we have to write a program that upon execution prints its own source. some solutions -- ...
10
votes
5answers
4k views

Ruby: change each value in a hash with something like #collect for arrays?

I'd like to replace each value in a hash with value.some_method. For example in a simple hash {"a" => "b", "c" => "d"} every value should be .upcase-d so it looks like {"a" => "B", "c" => "D"}. I ...
7
votes
12answers
1k views

Reserved words as variable or method names

Is there any tricky way to use Java reserved words as variable or method names?
6
votes
3answers
1k views

about ruby range?

like this range = (0..10) how can I get number like this: 0 5 10 plus five every time but less than 10 if range = (0..20) then i should get this: 0 5 10 15 20
6
votes
6answers
2k views

How do you search all source code in Vim?

When using Vim, and given a directory filled with code (e.g. ~/trunk/) with a number of sub-directories, is there a way to grep/search for instances of text/regexes across the entire source code? At ...
5
votes
4answers
2k views

Fast modulo 3 or division algorithm?

is there a fast algorithm, similar to power of 2, which can be used with 3, i.e. n%3. Perhaps something that uses the fact that if sum of digits is divisible by three, then the number is also ...
4
votes
8answers
1k views

Shortest way to swap two files in bash

Can two files be swapped in bash? Or, can they be swapped in a shorter way than this: cp old tmp cp curr old cp tmp curr rm tmp
4
votes
10answers
3k views

Interview question: f(f(x)) == 1/x

Design a function f such that: f(f(x)) == 1/x Where x is a 32 bit float Or how about Given a function f, find a function g such that f(x) == g(g(x)) See Also ...
4
votes
9answers
332 views

Tricks to Google for desired page quickly [closed]

I like to use Google to quickly locate API documentation. To get better results, I type some keywords that give desired results as top lines. For example: JavaScript: MDC Array slice MDC ...
4
votes
5answers
335 views

How do you implement Related tags functionality as used in Stackoverflow.com?

How do you implement the 'related tags' functionality as used in many websites like our stackoverflow.com and http://tagexplorer.sandbox.yahoo.com/.
3
votes
1answer
60 views

why does twitter use the !function syntax in their embed code

I was looking at twitters embed code and saw that they are using !function ... while i know that this evaluates to false I was wondering what the point of it was. thoughts? !function(d,s,id){var ...
3
votes
4answers
132 views

How to select a single row a 100 million x

I would like to generate the following output, using a single row from a select. SELECT max(t1.id)+1 as new_id FROM t1; -> 101 However I want to do SELECT s.last_id, sequence(1..100000000) as ...
3
votes
1answer
182 views

Cross Platform Tips, Tricks & Gotchas [closed]

If you've worked on a cross platform development project what advice do you have for someone (like myself) considering starting one? Examples: What worked? What didn't? What problems did you run ...
3
votes
4answers
348 views

How to access hidden template in unnamed namespace?

Here is a tricky situation, and i wonder what ways there are to solve it namespace { template <class T> struct Template { /* ... */ }; } typedef Template<int> Template; Sadly, ...
3
votes
2answers
344 views

javascript tricks. Why (a,b,c) => 5

. var a,b,c = function() { return 5; }; Variables a and b is undefined, c is function, why when we do this (a,b,c)() we have 5 ?
3
votes
4answers
473 views

Running a command with every svn commit

Is it possible to make svn run some command before every commit? I have some documentation in LaTeX in the repository and would like to have always the latest version of the compiled docs available as ...
3
votes
4answers
515 views

C function seemingly not defined anywhere!

I'm looking at the vim source code, specifically the file normal.c, and I see this function nv_operator being used, but it's not defined anywhere (I grepped the entire src directory) It's only ...
2
votes
1answer
74 views

VIM navigate on insert mode

One of the things that bugs me the most about VIM is having to move while in insert mode. With any other programs I can use the arrow keys to move around but with VIM I have learned to use h/j/k/l and ...
2
votes
2answers
33 views

Using fixed type constraints inside an interface in Java?

interface I1 { ... } interface I2 { ... } interface I3 { ... } interface I4 { ... } interface MyFactory { Object<? extends I1 & I2 & I3> createI1I2I3(); // doesn't work Object<? ...
2
votes
2answers
105 views

CSS Information [closed]

Possible Duplicate: Hidden features of CSS Hello Friends, I would like to know, some reference sites, to learn div based CSS tricks. I think developer having a basic CSS knowledge would be ...
2
votes
1answer
85 views

ActionScript 3: how to get the class by just having the name

i am trying te recieve the class with only having the name of the class so example: var className:String = "TheClass"; var theClass = new className(); is this possible?
2
votes
2answers
174 views

Hiding and showing parts of an html with PHP?

The example I have in HTML: <div id="red-nav-warp"> <ul id="red-nav-logo"> <li><img class="sponsors" id="sponsorone" src="media/img/logosmall.png" /></li> ...
2
votes
6answers
413 views

Guidance, tips/tricks for larger scale php development [closed]

A project that I maintain and develop in asp.net so far has over 500 c# files (including code behind), 150 aspx, dozens of web controls, masterpages, split over various projects; web, business, cms. ...
2
votes
4answers
134 views

Practical and useful coding tricks that help web developers save time? [closed]

I'm a php web programmer. I want to know if there are common web problems that web programmers face for which there are unorthodox and effective solutions. As an example, I'm making a simple website ...
2
votes
3answers
259 views

Is there any command to go to the end (or beginning) of a Ruby block using vim

Is there a way to go the end of a Ruby block using vim? For example module SomeModule # <Supposing that the cursor is HERE> def some_method end end I want to go from where the cursor ...
1
vote
1answer
31 views

Is it possible to map logical OR value from database table's column into the list of objects using JPA/Hibernate (preferably JPA)?

Is it possible to map logical OR value from the database table's column into the list of objects using JPA/Hibernate (preferably JPA)? Of course, there is another question - whether it makes sense do ...
1
vote
3answers
147 views

True privateness in Python

PEP 8 states that (emphasis mine): We don't use the term "private" here, since no attribute is really private in Python (without a generally unnecessary amount of work). I guess it refers to ...
1
vote
0answers
70 views

What are tricks that makes your programming life a little bit easier? [closed]

I am curious if you have any tricks that you often use during programming that saves you some time. The one that I think pretty cool and really simple is to make block comments like this: /* ...
1
vote
2answers
114 views

What browsers support timezone conversion automagic?

This example should display "Mon Dec 25 1995 07:30:00 GMT-0600 (CST)" if you're on a -6 time: (new Date('Mon, 25 Dec 1995 13:30:00 GMT')) or js fiddle: http://jsfiddle.net/nFADG/ Is this sort of ...
1
vote
2answers
180 views

What simple Eclipse tricks do you know? [closed]

Possible Duplicate: Hidden features of Eclipse I've just discovered that if you type sysout then hold ctrl and press space it changes to System.out.println()
1
vote
1answer
50 views

Determine, whether element was wrapped around float-element

I have an image, which is "float: left;" "ul" is wrapped around this image. It is on the right-hand side from image. Custom bullets of "ul" are particulary overlapping the floating image. When the ...
1
vote
4answers
749 views

Possible to disable flash element?

I'm trying to do something unusual. I promise it has a purpose. I'm 90% sure it can't be done, but wanted to double check with geniuses. Is it possible to have an object/embeded .swf in the page, let ...
1
vote
1answer
1k views

How to Set mouse cursor position to a specified point on screen in C#?

How to Set mouse cursor position to a specified point on screen in C#? am i must hacke the motherboard buffer that receive the mouse and keyboard coordinates and presses ??? is there another one to ...
1
vote
4answers
233 views

How to generate a compilation error when pointer types differ?

How do I write a macro CHECK(a, b) that generates compilation error when the two pointers a & b have different base type. CHECK((int*)0, (char*)0) -> compilation error CHECK((int*)0, (int*)0) ...
0
votes
0answers
122 views

Mongo db any trick for speed up query with OFFSET and LIMIT? [closed]

does anyone knows if exist any good trick to speed up queries on mongo db when using limit with offset too? i'm just using indexes, i would like to know if are there no-standard tricks.
0
votes
1answer
82 views

Tips of SSRS report designing [closed]

I want tips and tricks how to design a report in SSRS 2005 (with conditions in the expression)
0
votes
3answers
167 views

C++ enum redefenition and C++0x

If I want to exclude problems with enums and type redefinition in C++ I can use the code: struct VertexType { enum { Vector2 = 1, Vertor3 = 2, Vector4 = 3, }; }; ...
0
votes
0answers
66 views

Spoofing the File Path

I am trying to find a way to spoof a file whenever a program attempt to open it AKA redirecting the program into reading a different file than intended. I am trying to figure out how to do this in C#. ...
0
votes
0answers
617 views

XCode 4 Tips, Tricks, Shortcuts

Let's have em. I see this exact question has been previously closed: Xcode 4 : Tricks, Tips & Shortcuts It was right that it was closed. but it was closed for entirely the wrong reason. It ...
0
votes
1answer
40 views

How are they displaying one character for other

Please see this page and guide me: ...
0
votes
1answer
272 views

How to implement MySQL::“LOAD DATA LOCAL INFILE” in PHP?

We have to implement the import procedure. The quantities of data is about 100 megabytes for one CSV files (the files already resides on server, so no upload necessary). Any advice on whether to ...
0
votes
2answers
17 views

Need the best approch to show a group of server control according to its permission

Suppose I have a page which have more that 50 asp.net server controls. Now I want to display some control according to the logged in user's permission and rest of the controls will be hidden. In the ...
0
votes
0answers
261 views

What are your favorite little used C# trick? [closed]

Possible Duplicate: Hidden Features of C#? Hello Everyone, I'm just wondering what little C# tricks that programmers use in their day-to-day work. I have two - One, an overlooked, for me, ...

1 2