The tricks tag has no wiki summary.
1
vote
1answer
149 views
“with” macro in C
I was looking for a macro that will resemble the with-construct.
The usage should be something like:
with (lock(&x), unlock(&x)) {
...
}
It might be useful for some other purposes.
I ...
0
votes
1answer
36 views
Put the value of an input Button next to the button via css
I was wondering if this is possible:
if I have an input field:
<input type="button" value="some value" class="icon-button" />
and it is styled with gradient background, border, box-shadow, ...
0
votes
4answers
66 views
Override href with jquery
I have a lot of links with this structure:
<a class="myclass" href="http://externaldomain.com">Anchor Text</a>
I'd like to put something before the url in the href attribute to change ...
0
votes
1answer
31 views
Fragment Replaced even then Getting touch Events of Replaced Fragment
I have an Activity with 3 fragments at different positions A,B,C
When i replaced my fragment C with one fragment D. I am still getting the touch events of the fragment C. Where i will be getting ...
0
votes
7answers
72 views
change the style of all input-fields that contain only a “1”
I use a style on my website, that has one deficit: the number "1" looks exactly like a big "I" and like a small "L".
How can I dynamically change with javascript the font-style for all input-fields ...
0
votes
1answer
172 views
Compatibility of the tricky dynamic arrays with dynamic arrays
Considering the old trick to make an array
Type
IntArray = Array Of Integer;
PIntArray = ^IntArray
PTDynIntArray = ^TDynIntArray;
TDynIntArray = Array[0..0] Of Integer;
{later...}
...
0
votes
1answer
131 views
Elegant solution to converting a std::vector<boost::shared_ptr<T>> into a std::vector<T*>
I did not find exactly the same question.
Is there a way to convert a:
std::vector<boost::shared_ptr<T>>
into a non safe version:
std::vector<T*>
without doing a for loop and ...
1
vote
1answer
157 views
How to load Object Oriented variable value in Yii PHP using <<<HTMLDOC … HTMLDOC format
i want to use the following code
$mail->Body = <<<HTMLDOC
$this->model->firstname . $this->model->lastname,
today is your lucky day !
your desired product has reached your ...
-2
votes
2answers
43 views
Creating a Variable of Function from Text using $$
I was thinking today at how all the OOP works.
And i was thinking: Wouldn't be great to check if a method exists using a given text value ?
So, if i have a text function_name_in_text_format, how do ...
3
votes
4answers
7k views
How can I select from list of values in Oracle
I am referring to this stackoverflow answer:
How can I select from list of values in SQL Server
How could something similar be done in Oracle?
I've seen the other answers on this page that use ...
0
votes
3answers
136 views
Some alternative to hundreds of buttons
Im going to write some android app, which will basically consists of two activities. So first should have a lot of buttons (100+) and on click on any of them I will just get some special id and move ...
3
votes
1answer
179 views
Why does Twitter use the !function syntax in their embed code
I was looking at Twitter's embedded 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.
Here is the code I am referring ...
1
vote
1answer
47 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 ...
0
votes
0answers
1k 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
331 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)
1
vote
2answers
95 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<? ...
3
votes
4answers
223 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 ...
2
votes
3answers
260 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 ...
0
votes
3answers
474 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
106 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#.
...
2
votes
2answers
217 views
CSS Information [duplicate]
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 ...
0
votes
0answers
858 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
46 views
1
vote
2answers
260 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 ...
0
votes
2answers
828 views
What simple Eclipse tricks do you know? [duplicate]
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
81 views
Determine, whether element was wrapped around float-element
I have an image, which is float: left;
a ul tag is wrapped around this image. It is on the right-hand side of the image.
Custom bullets contained in the ul are partially overlapping the floating ...
0
votes
1answer
445 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
21 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 ...
2
votes
1answer
98 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?
0
votes
0answers
284 views
What are your favorite little used C# trick? [duplicate]
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, ...
2
votes
2answers
386 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>
...
1
vote
1answer
443 views
WPF: Replace the XAML of a page or usercontrol (both is ok) at runtime?
I know that it is possible to parse an XAML - file at runtime and create an UIElement which I can insert into my pages grid, no problem there.
But what I really want is to replace the whole XAML of ...
3
votes
1answer
241 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
525 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, ...
14
votes
3answers
3k 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
3
votes
2answers
503 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 ?
2
votes
6answers
612 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
167 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 ...
7
votes
4answers
3k 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 ...
1
vote
4answers
2k 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 ...
21
votes
5answers
2k 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?
2
votes
1answer
5k 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
831 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) ...
4
votes
3answers
537 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 ...
0
votes
6answers
186 views
Clever way to make same assembly executed differently?
Without changing the build process or including the source files, can anyone think of a way to make two pieces of code that, when compiled, generates the same assembly but still executes differently? ...
8
votes
11answers
4k 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
0
votes
5answers
1k views
What does this CSS value mean?
While viewing the source of a web page, I came across this CSS, applied to a span within a button:
.whatever button span {
position: absolute;
left: -1e+7px;
}
What does left: -1e+7px; ...
4
votes
4answers
792 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
640 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 ...
4
votes
10answers
4k 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
...



