Tagged Questions

1
vote
1answer
79 views

jquery traversing - there has to be a better way than mine!

Hi Folks, I'd like to know if someone has a better way to access the elements #type and #type_new based on my html: <tr> <th>Type of Organization</th> <t …
0
votes
2answers
96 views

“cp --parents” in batch file/VBScript

How would you write this having only batch files and VBScript at your disposal in a Windows environment? find -name '*.ext' -exec cp --parents {} destination/ \; Or put it this …
30
votes
52answers
2k views

How can I explain to a non-technical person what I do for a living?

How do you relate to non-technical people (read: your significant other/mom/dad/family/etc.) about your job with programming? When asked about how my day was at work, I find it ra …
1
vote
1answer
741 views

How to create an SQL Server 2005 CTE to return parent-child records, for children with multiple parents.

Hi there. I'm experimenting with CTE's in SQL Server but have reached a dead end with getting the following scenario to work. I have a hierarchy table similar to this: Node(ID:43 …