Tagged Questions
The hints-and-tips tag has no wiki summary.
498
votes
40answers
28k views
jQuery Tips and Tricks [closed]
Syntax
Shorthand for the ready-event by roosteronacid
Line breaks and chainability by roosteronacid
Nesting filters by Nathan Long
Cache a collection and execute commands on the same line by ...
157
votes
72answers
60k views
What is in your .vimrc? [closed]
Vi and Vim allow for really awesome customization, typically stored inside a .vimrc file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.
What other tricks ...
96
votes
6answers
16k views
Adding a guideline to the editor in Visual Studio [closed]
Introduction
I've always been searching for a way to make Visual Studio draw a line after a certain amount of characters:
Below is a guide to enable these so called guidelines for various versions ...
23
votes
21answers
2k views
What software analogies have helped you? [closed]
I have often enjoyed the use of analogies in understanding a software scenario or problem.
For example, to understand the concept of public key encryption, the 'locked mailbox' analogy or similar is ...
13
votes
6answers
602 views
What should a C# developer know before using WPF [closed]
I'am more a sysadmin and a webmaster than a developer, but sometime I develop, including C# principally using Winform (and optionally GTK+).
I've started few weeks ago a WPF project, and it seem ...
13
votes
8answers
1k views
Tips on refactoring an outdated database schema [closed]
Being stuck with a legacy database schema that no longer reflects your data model is every developer's nightmare. Yet with all the talk of refactoring code for maintainability I have not heard much ...
10
votes
14answers
3k views
Visual Studio 6 tips and tricks [closed]
Some of us would invariably have to support 'legacy' code using Microsoft's Visual Studio 6.0 IDEs which - although opinions would differ - are generally regarded to be less user friendly compared to ...
7
votes
6answers
2k views
Eclipse for IntelliJ Idea Users
I have a coworker who is looking to switch from InteilliJ Idea to Eclipse, and is concerned about not knowing the Eclipse set of commands.
I was wondering - would anyone have a link to keyboard ...
7
votes
9answers
377 views
Tips on walking through unfamiliar code or info on tools that help the process?
I would love tips on how to walk unfamiliar code with many objects. Before OOP this was still a difficult thing and I would do it with listings and have tabs and 8 fingers holding my place. With ...
6
votes
2answers
157 views
Building a c# desktop app, starting from scratch, tips please [closed]
I need to build a simple desktop app, my experience is with vb6 but it's time to move on, so i need some help.
My app is relatively simple, a db table that holds events by date.
The app should display ...
4
votes
5answers
321 views
what's wrong in File.Exist() method? [closed]
Possible Duplicate:
show a message if the filename already exists
Reading some answers with code samples I notice that those where this method mentioned are subjected to criticism. I'm ...
4
votes
4answers
268 views
How can SQL procedures from the Master database help db developers?
There are a lot of procedures and functions in the master database of SQL Server that provide handy tools for the database developer. For instance, sp_help [database object] will provide several ...
3
votes
2answers
1k views
Visual Studio 2010 Optimization & Tips? [closed]
I've noticed Visual Studio 2010 is a lot slower than my Visual Studio 2008 EDI, I've found several nice tips and optimization suggestions for VS2008, however I want to know if people have any tips for ...
3
votes
7answers
321 views
Getting Started with an IDE?
Having programmed through emacs and vi for years and years at this point, I have heard that using an IDE is a very good way of becoming more efficient.
To that end, I have decided to try using ...
2
votes
2answers
400 views
what's the most famous version control system [closed]
I am about to start a big project and I want use the most used version control system to use it. That will help me to get a nice number of developers .
1
vote
2answers
118 views
Any tips for writing good reusable PHP classes? [closed]
I have a bunch of php functions I always use for my projects, some are for strings, others for dom parsing, others for encoding/decoding, etc. Now I want to create reusable classes so I can easily ...
1
vote
8answers
532 views
C++ Matrix Class - Suggestions
I am trying to build a templated Matrix class in C++. Below is its implementation.
I implemented two operators +,+= as of now just to give an idea on how it will look and I thought it would be best to ...
1
vote
5answers
137 views
Tips needed for a skills-presentation website [closed]
I want to create a dummy presentation website that would show my .NET webprogramming skills; I could put a link to this dummy website on my blog and show it at interviews.
If you would need to create ...
1
vote
3answers
152 views
Tricks, hints, shortcuts in documentation / comments [closed]
Which tricks, hints or shortcuts do you use regularly when you document your sourcecode?
What type of comment does help you most (or is most desired) when looking over a piece of sourcecode?
For an ...
0
votes
2answers
36 views
Take info of current page when pressing a button
I have a question for php. I am sure it has already answered but I can't express it to search.
So, I have a page which is actually a user profile. In this page there is a button. When I press this key ...
0
votes
1answer
103 views
0
votes
4answers
764 views
How to pop up a hint dialog when focusing on an input like the following page with jQuery?
http://www.resumebucket.com/signup
Is there a ready plugin to implement this?
Should not be big in size.
0
votes
4answers
428 views
Can I tell Perl that some data are immutable to speed things up?
Perl is really good for writing the kind of string/file parsing programs that I usually need to do. What I really love is the insignificant amount of time it takes me to write quick scripts and ...
0
votes
6answers
626 views
need hint with a custom Linux/UNIX command line utlity “cal” in C
Ok I need to make this program to display "cal" 3 month(one month before and one month after) side by side, rather than just one single month it displays in any Linux/UNIX. I got it working to display ...