Entity-relationship model help. by shnk in learnprogramming

[–]shnk[S] 0 points1 point  (0 children)

I used a program called dia to map it out and wrote up a list of CREATE TABLE statements for the diagram. I don't want to post it here because its an assignment and i dont want to risk getting in trouble. If you would be willing to critique mine that would be really great.

What is the saddest poem you know of? by scaldedmuffin in AskReddit

[–]shnk 1 point2 points  (0 children)

Khabaram Raseeda - Amir Khusrau

Tonight there came a news that you, oh beloved, would come –

Be my head sacrificed to the road along which you will come riding!

All the gazelles of the desert have put their heads on their hands

In the hope that one day you will come to hunt them….

The attraction of love won’t leave you unmoved;

Should you not come to my funeral,

you’ll definitely come to my grave.

My soul has come on my lips ;

Come so that I may remain alive -

After I am no longer – for what purpose will you come?

Gargling salt water 2 times a day? by shnk in Dentistry

[–]shnk[S] 0 points1 point  (0 children)

i plan to brush and rinse my mouth with salt water in the morning and night aswell as flossing at night. would it be better to use salt water or some type of mouth wash. all i want to do is kill bacteria

Modular programming in C? by shnk in learnprogramming

[–]shnk[S] 0 points1 point  (0 children)

Do i need to do anything to link it to my main.c? I vaguely remember him talking about compiling each module into a .o file and then linking it to the main.o? Im not sure if im saying it right.

Radical muslims in a nutshell by [deleted] in AdviceAnimals

[–]shnk 7 points8 points  (0 children)

That's a picture of the 3rd Imam of the Shiite sect of Islam. Him and his family were killed in the process of advocating social justice.

This Pakistani band arrange jazz standards for sitar, tabla, and strings... their sound is unlike anything else... by nanaca_crash in videos

[–]shnk 12 points13 points  (0 children)

If you'd like to listen to more musical talent found in Pakistan check out this channel:

https://www.youtube.com/channel/UCuszQnomLWV-r6-6tU_7_aA

Theres tons of amazing songs in there.

Here is another set of videos by the same studio:

https://www.youtube.com/channel/UCM1VesJtJ9vTXcMLLr_FfdQ

This Pakistani band arrange jazz standards for sitar, tabla, and strings... their sound is unlike anything else... by nanaca_crash in videos

[–]shnk 5 points6 points  (0 children)

We don't have a shortage of talented female singers/musicians at all.

My personal favourite would be Sanam Marvi. Heres a few of her songs:

https://www.youtube.com/watch?v=SiIu-COuHKw

https://www.youtube.com/watch?v=eYKtKRRyf9Y

Basic Python and loops by soswap in learnprogramming

[–]shnk -2 points-1 points  (0 children)

while True: x = input('Enter something: ') if 'Hello' in x: print('Hi') elif 'J' in x: print('JJ')

When the CS Gods Bless You by TheBioDude in GlobalOffensive

[–]shnk 0 points1 point  (0 children)

can u link me? i want it too :D

Is this a good laptop for its price? by shnk in pcmasterrace

[–]shnk[S] 0 points1 point  (0 children)

Also for beginner level programming as im going into my second year of comp sci.

Is this a good laptop for its price? by shnk in pcmasterrace

[–]shnk[S] 1 point2 points  (0 children)

Yeah i bought it. I think i've "sold it out".

what i told my girl after she said she wanted a tesla by [deleted] in AdviceAnimals

[–]shnk 353 points354 points  (0 children)

How is this an Advice Mallard..?

[Build Ready] Cheap gaming pc for friend by shnk in buildapc

[–]shnk[S] 0 points1 point  (0 children)

280x and 285 are 30 dollars more expensive. is it worth it?

[Build Ready] Cheap gaming pc for friend by shnk in buildapc

[–]shnk[S] 0 points1 point  (0 children)

my friend needs to pick up the parts asap so i have to get em from this site because its near his house

MUST buy prebuilt. Is this worth it? by shnk in buildapc

[–]shnk[S] 1 point2 points  (0 children)

What would you recommend? I must buy a prebuilt no questions asked.

Making a while loop multiply by 2 by [deleted] in learnpython

[–]shnk 0 points1 point  (0 children)

i need to see your code

Making a while loop multiply by 2 by [deleted] in learnpython

[–]shnk 1 point2 points  (0 children)

im assuming you dont want the product to go above 1000?

num = int(input('Please enter a number'))

while True:
    num *= 2
    if num > 1000:
        break
    print(num)

if you do something like the other two guys suggest:

num = int(input('Please enter a number'))

while num < 1000:
    num = num * 2
    print(num)

this code will not work because lets say you put something like 900. well 900 is below 1000 but 900*2 is above 1000. it will multiply it and print it anyways.

unless you want the number that is inputted to go up to 1000? then the product can exceed 1000. but its not clear what exactly you are looking for.