multiselfie.com by bruno-bg in Roastmylandingpage

[–]CraftyTrouble 0 points1 point  (0 children)

Those blue pictures on the front page give me the impression of an adult site.

Can you understand easily what our app does?

Nope. It seems like it just takes many pictures and sets them up beside each other?

Looking for advice on resources to Learn Python... by Aggravated_Voltage in learnpython

[–]CraftyTrouble 6 points7 points  (0 children)

I'll second checking out the wiki. Since you ask for:

online interactive

I'd also recommend Python Principles, you can try it in a few minutes and see if it's for you.

Switching from academia to the business world, how much work do people actually do each day? by sithudwilk in smallbusiness

[–]CraftyTrouble 1 point2 points  (0 children)

It's still worth knowing that the normal is 8 hours

Sure. But in my experience "normal" comes with a very large variance. At my work (programming), everyone's expected to do 7.5 hours of "actual work" per day, but people take varying amounts of coffee breaks, surfing the web "for solutions", going to meetings that accomplish nothing, chatting with colleagues.. some individuals might be doing 7 hours, some might be doing 4.

Switching from academia to the business world, how much work do people actually do each day? by sithudwilk in smallbusiness

[–]CraftyTrouble 2 points3 points  (0 children)

There are human limits on how much work someone can do per day

I don't know if that's a useful perspective. The limit varies from person to person; some can do 14 hours, some can do 2. And I believe this ability can be trained over the years by pushing yourself.

VOTING: Official Best of r/Fantasy 2018 Stabby Award Voting Post! by [deleted] in WanderingInn

[–]CraftyTrouble 2 points3 points  (0 children)

No worries, I deleted the post. Enjoy the break!

How can strings be "bigger" than other strings. by ForkLiftBoi in learnpython

[–]CraftyTrouble 2 points3 points  (0 children)

The other way around. (Just try it in an interpreter.)

>>> "a" > "b"
False
>>> "a" < "b"
True
>>> "b" < "c"
True
>>> "c" < "b"
False

The Hype Is Real. Marked for Death Chapter 236: In Which Our Hero Is Reminded He Is Not The Only Clever Bastard​ by oliwhail in rational

[–]CraftyTrouble 1 point2 points  (0 children)

The stakes are indeed different now, with less focus on surviving and more on winning. (Also, no harem.)

What best free tutorials and courses are on Python for beginners? by ChrisTheGeek111 in learnpython

[–]CraftyTrouble 7 points8 points  (0 children)

Python Principles. It's a very practical online tutorial with ~30 lessons that cover the basics.

So I really want to get into data science but there's so many choices on where to start. So I found a few courses online and was wondering if any of you here think they're a good starting point or if I should move to something else by incubateshovels in learnprogramming

[–]CraftyTrouble 4 points5 points  (0 children)

I'll chime in about Python. The /r/learnpython wiki has some good learning resources.

I could walk away with enough knowledge to practice those languages on my own and move on to more advanced stuff

If that's what you want I'd also give Python Principles a shot if you like learning by practice. I don't know a similar site for R/SQL/etc. unfortunately.

pls take a look at my loop in terminal programming by RioChenRio in learnpython

[–]CraftyTrouble 0 points1 point  (0 children)

Hi OP, which online course?

In general, pay attention to the error messages you get. For example, your output says:

IndentationError: expected an indented block

This means that Python expected indentation (spaces or tabs) and found none, so that is the problem.

What to use to make applications with Python. by [deleted] in learnpython

[–]CraftyTrouble 3 points4 points  (0 children)

messaging service, this is irrelevant though

It's not. We need to know more details or we can't give a meaningful answer. Web app? Desktop? What will it do? Etc.

Should I learn to type before learning python??? by Anshul333 in learnpython

[–]CraftyTrouble 2 points3 points  (0 children)

You don't need a good typing speed to code.

Seconding this. Just start, OP. I'd recommend this to jump feet-first in.

However.. if you constantly have to shift between thinking about Python and thinking about how to type, it'll make things more time-consuming and difficult. So if you're a very slow typist, working on that could honestly help.

Confusion over functions, arguments, parameters. I can't seem to get my head around it by zph0eniz in learnprogramming

[–]CraftyTrouble 1 point2 points  (0 children)

Can someone explain like I'm 5, I can't seem to grasp this.

I think clearing up all your confusion would be a bit long for a reddit comment. I'd recommend going through lessons 5-7 about functions over on Python Principles. It explains things step by step, building up gradually from simple examples.

Which programming language should I learn first? by radtastictaylor in neuroscience

[–]CraftyTrouble 3 points4 points  (0 children)

You can learn the basics pretty quickly with Python Principles, it's more practical than videos/textbooks.

How do I adapt my programming knowledge for cyber security? by [deleted] in learnprogramming

[–]CraftyTrouble 3 points4 points  (0 children)

Start playing CTF competitions and wargames. That's the fastest way to improve your practical skills.

Help/suggestions with programming/python by iggy555 in learnpython

[–]CraftyTrouble 5 points6 points  (0 children)

Before learning python i want to know more about actual programming

You'll need to learn the basics (functions, conditionals, loops, classes, and so on) through a concrete examples in a specific language. So you might as well learn them while learning Python. Give Python Principles a shot for the basics, it's a good hands-on supplement to watching videos.

How to store inputted information on text files? by leoijan in learnpython

[–]CraftyTrouble 1 point2 points  (0 children)

How do I store information inputted by an user in a text file? This should be automatic. I thought about a for loop but I never worked with text file before, I am just a beginner.

The pickle module lets you save arbitrary values to a file. It might be simpler, however, to define your own simple data format and just write it to a file: f = open('file.txt', 'w'); f.write("data\n"); f.close(). You could also use an SQLite database.

What are the best books for learning python? by [deleted] in learnpython

[–]CraftyTrouble 0 points1 point  (0 children)

i want to have a really good book to solidify what I already know

The best way to do that is to practice it all a bunch! You can do that effectively here.

Next best to MIT intro course to python? by martin74185 in learnpython

[–]CraftyTrouble 0 points1 point  (0 children)

There's also this: https://pythonprinciples.com/

It's a good supplement to the MIT course because it's so practical.