|
Tell me something.anything.then tell me your zodiac sign NOW?
Started by SoScorpio on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at yahoo):
Source(s): Not your typical dictator.
I bet you won't tell me anything.
I'm depressed
Scorpio Source(s): blah Do not interrupt Source(s): Aries blah
Virgin here Tell me about what you did today.
|
|
It just goes to show...if you want something done right , you gotta do it yourself....I asked you clowns if going all in preflop with what you feel is the best hand is a good strategy...well after trying a method of seeing more flops without going all...
Started by CashusClaude on
, 15 posts
by 12 people.
Answer Snippets (Read the full thread at twoplustwo):
tell me that, which tells me, all you are are a bunch of idiots who have no clue (just like the fish.
|
|
Tell me, me, ME stuff in 2012 the pacific has long since rang in the new year. get to it posters! tell me your most exciting and your most mundane.
Started by fox in socks on
, 15 posts
by 13 people.
Answer Snippets (Read the full thread at unforumzed):
The doctor told me that this might I'll be travelling abroad in....
I woke up this morning to a puffy, stiff ankle .
(no but really, you never post since September.
To it posters! tell me your most exciting and your most mundane.
|
Ask your Facebook Friends
|
Im working on a HTML test page with a simple grid that has red or blue squares. If you click a red square it should be blue, if you click a blue square it should change to red. Sounds easy.
I have it set up so there are rows with id's r + rownum. In my...
Started by lollerskates123 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are 10 text nodes between your 11 <span> elements... .
You'll have to check nodeType
Rather than fetching all childNodes , you want to do row.getElementsByTagName('span')
Text nodes are included in .childNodes .
Whitespace is also a childNode.
|
|
I interact with you but it's worse than a dog
discuss;
so all i got to think
i me i me i me i me i me i me i me i me i me i me i me i me
you fit in.
ain't that a problem?
Started by yourslurofchoice on
, 12 posts
by 6 people.
Answer Snippets (Read the full thread at gaiaonline):
I've already studies millions of these videos, tell me concrete facts about what will happen instead happen? I've already studies millions of these videos, tell me concrete facts about what will happen on the hanging man.....
|
|
I need a MySQL query w/ Regex to tell me if my string's first character is a number from 0 to 9.
Started by phirschybar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can adapt it for your purposes:
SELECT '123 this starts with a digit' REGEXP '^[[:digit:]]';
You can use it in a SELECT like this:
SELECT * FROM tbl WHERE field REGEXP '^[[:digit:]]';
SELECT... .
The following query returns '1', since the REGEXP matches.
|
|
I noticed that VS2008 doesn't tell me when I'm typing a control name that doesn't exist. why is that?
Started by jello on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
There's are options under "....
Select the language, and look in "Advanced".
Then scroll the list on the left to "Text Editor" .
Go to Tools -> Options.
You didn't say which language you're using, but I expect the setting to be the same as it is for C# .
|
|
I need a program which will recursively scan a directory and tell me all of the distinct filetypes that are inside the folder
Started by Jonathan Kushner on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
You can set WinDirStat to look at a specific folder and it will sum up the file-types
And you can even create a report, which you could parse if you need it for something specific
If you're using Windows Vista or 7 and you don't want to install a third... .
|
|
How can I write a linux bash script, that tells me which computers are ON in my LAN ?
It would help if I could give it as input a range of IP's.
Started by Dumb Questioner on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
#! /bin/bash BASE=$1 START=$2 END=$3 counter=$START while [ $counter -le $END ] do ... .
It should be fairly obvious how to extend it from one to multiple octets .
If you're limiting yourself to only having the last octet changing, this script should do it .
|
|
I need a primary key name and primary key column name of a table please tell me what query should I write..
Started by Rajesh Rolen- DotNet Developer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Not quite what you're looking for, but you can play around with it:
SQL 2000: T-SQL to get foreign key relationships for a table
declare @tableName as nvarchar(100) set @tableName = 'table' select i.name, c.name from sys.index_columns ic join sys.indexes... .
|