Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
218 views

css hacks (tricks)

sometimes when i see a website i like or sites from respected people, I see the source codes and try to understand them (as we all do) on Jeremy Keiths site he uses the following code: ...
5
votes
2answers
234 views

Rectangular/lattice multiplication

I am trying to implement the rectangular/lattice multiplication in Java. for those who don't know, this is a short tutorial. I tried some methods wherein I used a single array to store multiplication ...
5
votes
1answer
201 views

Creating subdomains on the fly

When one signs up for Blogger or WordPress, one gets very own subdomain that works instantly. How can do like that given I have my own VPS/VDS/Dedicated server?
3
votes
1answer
71 views

how to know where is my site in google? [closed]

my website "http://www.cpcells.com" related to computer cells. so when i enter "computer cells" in google search. my page may be appear in 12112xxx page back. is there an easy way to know where is my ...
3
votes
3answers
338 views

Delphi Typed Constants in Case Statements

What is the most elegant (or least ugly) way of using typed constants in a case statement in Delphi? That is, assume for this question that you need to declare a typed constant as in const ...
2
votes
4answers
134 views

what does this C trick do?

I read this in 2nd answer of What is your favorite C programming trick? What does this piece of code do? How is it useful? double normals[][] = { #include "normals.txt" };
2
votes
2answers
337 views

What are your favorite programming trick questions? [closed]

I was working on a interview test today for my job and came up with the following: <?php $example = ‘test’; if($example = 1) { $example = NULL; } var_dump(isset($example)); I was wondering ...
2
votes
3answers
290 views

how jquery qtip makes its arrows?

qtip is not using images to make its arrow, like other tips out there.. so i was wondering how are they making there dynamic arrow tip? person can easily change the size of the tip with width/height. ...
2
votes
2answers
302 views

How to add an anchor tag <a> to a block of html?

I have a block of html that I want to act as a clickable link. In the block of code below, I would like to make the whole div into a link. <div id="clickableLink"> <h3>Link ...
1
vote
2answers
304 views

Get model class from symbol

I'm implementing a method, that will be used in many places of a project. def do association end "association" is a symbol, like :articles, :tags, :users etc. When association is :articles, i ...
1
vote
0answers
96 views

Some dev forgot to lock their machine, Tricks! to play? [closed]

Some developers are just lazy and forget to lock their session when leaving. We strongly believe here that such bad habits should be punished. It's trick or treat: Invert mouse buttons Change ...
0
votes
0answers
17 views

Create and intercept virtual screens to later be placed back out

Alright, this is a complicated thing to explain, but I'll go ahead and explain it: I have a laptop, a DVI splitter, and two separate monitors. I need to trick windows into thinking that there is a ...
0
votes
1answer
330 views

Bypass Gmail ip tracking [closed]

Gmail keeps a track of the ip from which you accessed your account : Last account activity: 1 hour ago on this computer Is there any way to bypass that so that the ip hit is not tracked?
0
votes
1answer
253 views

How to disable save image and change Suffix to .htm during save it

How to disable save image and change Suffix to .htm during save it. In fact, I need to change suffix during save? like this site : www.alexbuga.com
0
votes
6answers
227 views

How to select parent div in html using jQuery

<div class="parent"> <div id="div1"></div> <div id="div2"> <div>Elemnt is here</div> </div> </div> $("#rembook").live('click', function ...
-1
votes
2answers
89 views

css responsive horizontal centering

I was trying to horizontally center an image (logo) for every screen size doing something like this ` #container {position:relative width:100%; height:100%;} #logo {position:absolute; ...