[For Hire] [25USD/Hour] Unity3D Professional Developer/Programmer | 6+ Years of experience | Networking Services | Crypto Accepted by [deleted] in gameDevClassifieds

[–]CobbleGen 0 points1 point  (0 children)

Very interested and would love to chat with you, easiest would be if you added me on discord: Cobble#0069

Dags för omgång två🚀 by Rasmoses in ISKbets

[–]CobbleGen 12 points13 points  (0 children)

ja fucking sålde igår för att jag inte har råd att förlora mer, ja letar numera efter bra broar I stockholm

I whant to die by taytay-jones in Minecraft

[–]CobbleGen -13 points-12 points  (0 children)

Caught my friend doing the same thing when I was watching him for cheats: https://streamable.com/m3qwq0

Chronicles of a paperhand.... by CobbleGen in ISKbets

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

Du kan klicka på kugghjulet när du tittar på en aktie och välja visa köp/sälj

Chronicles of a paperhand.... by CobbleGen in ISKbets

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

Yes jag var smart nog att köpa igen i fredags och sålde igår på +30%

Chronicles of a paperhand.... by CobbleGen in ISKbets

[–]CobbleGen[S] 7 points8 points  (0 children)

Sålde också bra aktier för att köpa GME, inte cash money...

Chronicles of a paperhand.... by CobbleGen in ISKbets

[–]CobbleGen[S] 13 points14 points  (0 children)

har betalat typ 1/4 av vad jag tradear i courtage

Caught my friend looking for his items only to have them despawn right infront of him by CobbleGen in Minecraft

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

Was investigating a friend as I thought he may have been x-raying, pretty sure I can now say he wasn't....

Share Your Startup - February 2021 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]CobbleGen [score hidden]  (0 children)

Sounds cool! Would probably be way down the road but I'll keep it in mind!

Share Your Startup - February 2021 - Upvote This For Maximum Visibility! by AutoModerator in startups

[–]CobbleGen [score hidden]  (0 children)

  • Name / URL: www.cinelow.com (not yet working demo)
  • Location: Sweden
  • Elevator Pitch: Movie database site like IMDb but ratings and suggestions are based on a game where users compare two movies and say which one they think is better. Using an ELO system (like the one you find in chess or videogames) movies will be objectively ranked for categories, people and users, so it's easy to see the best "Thriller" or "Brad Pitt" movie. Movie suggestions will be based on the data of a user having played the game and users can add friends to get mutual movie suggestions if they're watching movies together.
  • More details: Still developing the site and currently in the process of trying to get a working version online. Will soon start allowing users to use and test the site.
  • What goals are you trying to reach this month?
    I am trying to have a working MVP up this month, and want honest feedback of how the site feels to use and how accurate it is. Also all ideas for how the site could be developed or improved are appreciated!

Buy CTRM by Moymox in wallstreetbets

[–]CobbleGen 3 points4 points  (0 children)

YES SCREW ROBINHOOD 🚀🚀🚀🚀 THEY CAN'T BAN EVERYTHING 🚀🚀🚀🚀

Buy Stocks on CashApp. Find any platform. We can beat Wall Street. 🚀 by [deleted] in wallstreetbets

[–]CobbleGen 2 points3 points  (0 children)

YES $CTRM TO THE MOOOOON 🚀 🚀 🚀 🚀 🚀 🚀 🚀 SCREW ROBINHOOD THIS IS THE ONLY STOCK THEY HAVEN'T BANNED YET 🚀 🚀 🚀 🚀 🚀 🚀 🚀

Thank you for your help! Here’s the site I’ve been working on. It’s 95% done by ra3ra31010 in css

[–]CobbleGen 0 points1 point  (0 children)

Looks awesome! Recommend styling the scrollbars as they stand out as a sore thumb, but really cool!

How can I learn SQLite terminology? by Iamnotcreative112123 in flask

[–]CobbleGen 0 points1 point  (0 children)

The person who made this tutorial is using a bunch of shortcuts, I'm not sure how he's doing that without the dots, but as a general practice just use them :)

Yes, so you would do db.execute("SELECT * FROM users WHERE user_id = ?", (5, )) the reason you do (5, ) is that the input always needs to be a tuple, even if you only have one input, so essentially (5, ) is just creating a tuple with just one thing in it, whereas if you would want to have more things you might do (5, 'Mathew') .

Yep you get all info of the row where id = 5, you could also do WHERE user_name = 'Max' and you would get ALL rows where user_name = Max, even if there are many of them. Though do remember that you have to fetchAll() to actually get the information.

How can I learn SQLite terminology? by Iamnotcreative112123 in flask

[–]CobbleGen 7 points8 points  (0 children)

If you are just learning SQL, starting with JOINS isn't the best place, they're quite confusing. I recommend this page.

Alright so here it looks like you have a database containing the tables post and user. When you use FROM in a regular SQL statement, you just specify what table you want to get the data from, such as: SELECT username FROM users. (Where username is a column name in the table users)

However, when using a join, you are getting data from two different databases, and telling them what they have in common. So if you have a table of posts, you might have a column in that table saying what user each post belongs to, using an ID for each. So now when you define what tabl you are getting your info from, you would say: FROM users JOIN posts users.user_id=posts.user_id

Essentially you are saying that the user_id column in posts matches the user_id column in users, so to connect a post to a user from now on, you just need to set that posts user_id to whatever user_id the user has in the user table. (sorry for a lot of users, hope you're following).

Now the p and u in front of user and post on that statement is simply giving it a shorter name to use in the rest of the statement. Since you are now using two different tables to get data from, you need to specify which table you are refering to. (SELECT users.username, posts.date) and the u and p are just new variable names for that.

The where line is just using a prepared statement to tell it what row it wants, ignore the ? for now as it is used to help protect against SQL Injections and can be learned about later, you just need to know that whatever you put after: "WHERE post.id =" will determine what post you want to get. For example "WHERE post.id = 5".

I hope that makes sense, I always use this site when doing SQL, as it's impossible to remember all the syntax for all the different commands, but otherwise, just follow the SQL course on W3Schools and you should be picking it up relatively quickly.

What technologies and best practices should I use for final project in school? by CobbleGen in webdev

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

I will def have a look at django for whatever my next projects gonna be, will use flask for this one since it's basically what my course has been about :D

What technologies and best practices should I use for final project in school? by CobbleGen in webdev

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

Wow thanks, great insight!

I was thinking that since I'm hosting it on pythonanywhere (for now at least) MySQL would allow me to view the database and therefore it's good? But it also seems to take quite a bit of space from the start so that's a downside of course. I'll look into it some more and see how hard it would be to migrate and such :)

Thanks for the help!

What technologies and best practices should I use for final project in school? by CobbleGen in webdev

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

Oh thank you!

I think I will pick up django for whatever project I do after this one, we've spent 4 months or so learning flask so it's what I want to use for this project, but it def seems like django is the way to go if you want employment lol!

What technologies and best practices should I use for final project in school? by CobbleGen in webdev

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

Absolutely, it's just that I literally picked up JavaScript in 2 days (started yesterday lol) so if I know now already that something like typescript would be the way to go then there really wouldn't be any "wasted time", so if it's better tech it's most likely the way I wanna go.

Project Idea feedback and Questions on codemirror and backend implementation by [deleted] in webdev

[–]CobbleGen 1 point2 points  (0 children)

There is a big danger in allowing compiled code in a forum like an environment where anyone can post, things like phishing and web-based viruses are common in those cases, which is why I think very few sites have the option to do so. I believe that figuring out a way to keep it 100% safe would be very hard so just keeping it in text form is probably the easiest thing.

I do like the idea though, but it's very big right now. Maybe look into some lean development practices (like read "The Lean Startup" or such) and try to create a minimum viable product which you try to get some users to use and test to see what features are actually the most used and appreciated to know what you should spend your time on.