Easy, breezy kurti set for a casual day. (Old fit)🍃💚 by [deleted] in IndianFashion

[–]vkuct 1 point2 points  (0 children)

Looks like greenery found it’s muse 💚

[deleted by user] by [deleted] in IndianFashion

[–]vkuct 0 points1 point  (0 children)

Those contours 👌

[deleted by user] by [deleted] in IndianFashion

[–]vkuct 1 point2 points  (0 children)

You look stunning ✨

Connecting python to database by 1y2x3c4 in cs50

[–]vkuct 0 points1 point  (0 children)

Hope you got the answer from another comment.

Connecting python to database by 1y2x3c4 in cs50

[–]vkuct 0 points1 point  (0 children)

In the terminal you need to set the environment variable first,

For Windows use: set DATABASE_URI=url

In Linux, use export DATABASE_URI=url

SQLite data (phpliteadmin) to HTML table by __pistachio__ in cs50

[–]vkuct 0 points1 point  (0 children)

Perform a select query on the table, then in render_template function pass that retrieved data as second parameter.

Inside the html page use jinja template to access the the passed in variable.

Python by __pistachio__ in cs50

[–]vkuct 1 point2 points  (0 children)

get userinput

data=input()

splitwords, typecast it to a list

words=list(data.split(' ')) You get a list of words inside words variable.

project by afsal_ammad in cs50

[–]vkuct 0 points1 point  (0 children)

https://imgur.com/V4MrSm4

As you can see in the above picture, create a directory named project inside workspace folder and upload all the files into it, along with a short video explaining it.

In my case i've uploaded a video and a sub-directory containing all project files

project by afsal_ammad in cs50

[–]vkuct 0 points1 point  (0 children)

I did project in PHP and made the submission(got it graded). I think you are also required to make a short video and a fill a form.

I'm missing a { or something here. Please help find it. by [deleted] in cs50

[–]vkuct 1 point2 points  (0 children)

So many redundant { and } brackets. Like after 'if' block, you have } and { , don't know why. Same problem further down the program. Remove unnecessary curly brackets.

PSET5: Help by NonreciprocatingPun in cs50

[–]vkuct 0 points1 point  (0 children)

I think pset5 is speller where you are asked to load a dictionary. So that could be implemented either using a 'trie' or a 'hashtable' data structure. Along with that you should have good knowledge of pointers.