|
I was fascinated by this video I watched today, posted on Facebook by a father who dealt out some very public punishment to his teen daughter.
I'm curious to hear what everyone thinks about it. Was the punishment too harsh? Was the punishment in itself...
Started by Keroin on
, 25 posts
by 15 people.
Answer Snippets (Read the full thread at literotica):
This guy definitely has my vote for father of the year! If there were more parents out that that took a proactive stance in raising and disciplining their children, I think the world would be full of more productive, considerate, hard-working adults .
|
|
05-24-2011 #1 Kellie Pickler "Tough" Era Music Is The Heart Of Our Soul | Blog | Kellie Pickler - "Tough"
Started by Naco1776 on
, 21 posts
by 11 people.
Answer Snippets (Read the full thread at carriefans):
I hope: Kellie Pickler "Tough" Era So excite i like it! 05-24-2011 #4 Re: Kellie Pickler "Tough" Era I like: Kellie Pickler "Tough" Era....
05-24-2011 Sponsor 05-24-2011 #2 Re: Kellie Pickler "Tough" Era I really like this song.
|
|
Currently, Mental Toughness itself gives 105 SP. Improved Mental Toughness gives another 105 SP, making that a total of 210 SP.
This can be quite expensive on some builds, and most people don't even bother taking it (Sorcerers - because they are feat ...
Started by Crayu on
, 7 posts
by 5 people.
Answer Snippets (Read the full thread at ddo):
It....
One way to make them more attractive is to make one of the benefits of selecting them not only more SPs, but also an increase in the maximum total of Echoes of Power, and an increase in the speed with which Echoes of Power helps casters regain SPs .
|
Ask your Facebook Friends
|
Which Language is Tough ?
Started by rjvstudiohd on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at webcosmoforums):
I agree with this statement :All Languages are tough except Mother Language....
All Languages are tough except Mother Language.
Java and C are most tough ones.
Every language is most likely tough to learn if you don't know it already.
|
|
This is your chance to let us know, exactly how tough you are.
Started by Worsnop on
, 12 posts
by 8 people.
Answer Snippets (Read the full thread at ownedcore):
I'm so tough, I sat down on my computer....
Without any milk.
I'm
This
Tough I'm so tough that they call me the panda master I stubbed my toe and I only cried for 20 minutes How tough am I?
I ate a whole bowl of cereal this morning.
|
|
Tough week for LA (Saints lose) OUCH !!!
Started by dirtroadlizard on
, 13 posts
by 12 people.
Answer Snippets (Read the full thread at tidefans):
Re: Tough week for LA So funny if Sean Payton says "I didn't see that coming" during his press victory."
- Nick Saban, December 5, 2009 Re: Tough week for LA GOOD!!! The way those Saints fans were giving me the business I'm glad they lost....
|
|
I have a collection of structures. Each structure has 2 keys. If I query using key #1, I should get key #2 in return and vice versa.
It's easy to write code on the desktop when you have the power of the .NET Framework behind you. I am writing code in ...
Started by AngryHacker on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Or use just one hash....
Not sure if there's a more memory efficient way...
One going one way, one going to other.
If you want the fastest and aren't too concerned about memory, just use two hash tables .
Any reason you can't write your own hashmap?
Well...
|
|
Hello All,
My TL asked me to implement this:
If we have the alphabets in english numbered as
a 1
b 2
c 3
d 4
e 5
f 6
g 7
h 8
i 9
j 1
k 2
l 3
m 4
n 5
o 6
p 7
q 8
r 9
s 1
t 2
u 3
v 4
w 5
x 6
y 7
z 8
the vowels would be
a 1
e 5
i 9
o 6
u 3
The User would...
Started by Grace Kim on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It seems to me that this is a variation to a "greedy algorithm" problem, normaly associated with working out efficient change with coins in homework questions, but I think this seems to be a variant... .
I think that you are on the wrong track with using mod .
|
|
I'm building a fresh workstation and want to use Linux alongside Windows. This seems like a good opportunity to get acquainted with with either Xen or KVM.
So I face a choice. In favour of using Xen I see a type 1 hypervisor with very clear delineation...
Started by LRE on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
I use Xen extensively in the datacentre, but I don't like it for workstation use, it's architecture is just a bit weird for that, and has caused hardware... .
I use it for my development VMs on my laptop and it works marvellously .
For a workstation, I'd take KVM.
|
|
I have a DataTable which I select from database(Well,these data cross several tables,after the query and putting into a DataTable,it shows at below)
ColumnA ColumnB
a 11
b 33
b 44
a 22
b 55
but I want to transform it into an XML like this
<root>...
Started by Shuo on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Why bother with C# ?? You can do it in T-SQL directly (SQL Server 2005 and up):
SELECT ColumnA AS '@name', (SELECT ColumnB AS '@name' FROM YourTable t WHERE t.ColumnA = YourTable.ColumnA FOR XML PATH('item'), TYPE) FROM YourTable GROUP BY ColumnA FOR ... .
|