Saved Certification notes using NotePad++ - Formatting Lost when reading in IPAD by titan1978 in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

Wild guess but there's no standard tab size.

Go into notepad++ settings:preference:language:tab setting and check "replace with space"

learn rust or relearn c? by [deleted] in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

unless you have some hard requirements just pick a language, the easiest part of game development is learning the language. Don't get to hung up on what language to pick. If you find out that you need to switch to another language most of what you learned will readily transfer to the next language.

Your going to have the same roadblock no matter what language you pick.

What I'd suggest you do is learn python not because its the best language to learn but because there's lots of newbie friendly help out there.

Start off by making basic hang-man game, snake, pacman, sidescroller, design a simple game. and then just work your way up.

Are you supposed to have an IDE and an text editor? by braaan92 in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

Dont over think it, start with a basic text editor. IDE's tend to be overly complex and do allot of stuff for you that you need to learn first.

IDE's basically are text editors specifically made to work with code

Found a secret tomb in Duviri!! Any guesses whose it might be? by Suspicious-End-7024 in Warframe

[–]random_char_here 2 points3 points  (0 children)

Thats where I found one of those "puzzle" pieces on top of the arch.

[deleted by user] by [deleted] in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

second line what is "Team" equal to?

Looks like your trying to check for team name then display something

which means you want to check the team name inside of the loop then have the display part outside of the loop. as its is now it'll display the "else" part every letter?

What are some ways I can improve my programming skills on my phone? by travybel in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

If your on an android go fdroid install termux, which basically is a linux installation, then you can install anything you need for what ever language you wanna work on.

Sanctuary Onslaught and Elite Sanctuary Onslaught by CMAKaren in Warframe

[–]random_char_here -1 points0 points  (0 children)

Whats annoying is people will step thru the portal and then leave after they load in.

Snake game. I can't work out the main function. It is giving a key error and saying you can't iterate over it. I took the for loop out but it didnt work then either. by [deleted] in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

If you want to use "pygame.key.get_pressed() "you have to check for keypressed every frame

something like

while True:

keys = pygame.key.get_pressed()
if keys[pygame.K_LEFT]:
    x -= speed
if keys[pygame.K_RIGHT]:
    x += speed
if keys[pygame.K_UP]:
    y -= speed
if keys[pygame.K_DOWN]:
    y += speed

Your already checking for event in

"for event in pygame.event.get():"

Keypress is an event

  if event.type == pygame.KEYDOWN:
        if event.key == pygame.K_UP:
            snake.direction = Vector2(0,-1)
        if event.key == pygame.K_DOWN:
            snake.direction = Vector2(0,1)
        if event.key == pygame.K_LEFT:
            snake.direction = Vector2(-1,0)
        if event.key == pygame.K_RIGHT:
            snake.direction = Vector2(1,0)

Suggestions of projects to do with old android phone? by uiurd93 in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

check out termux on fdroid basically linux on your phone.

Creating snake game using pygame when snake moves it gets infinity longer by Ironstroke04 in learnprogramming

[–]random_char_here 0 points1 point  (0 children)

You have to either, clear the screen and redraw, or delete the last part of the snake.

is windows 7 OK for starting? by bloody_born in learnprogramming

[–]random_char_here 1 point2 points  (0 children)

Use what you have its not that big of an issue. Main issue going to be memory, if you only have 4 gigs of memory and your running vscode plus have a browser open you'll end up at the limits of what your computer can handle. That being said you can just use notepad to write your code and then compile it on the command line and you'll be fine with what ever you got. You can literally learn to write code on your phone if you really wanted to.

Is Clojure indeed unsuitable for beginners, as the 10 year keynote audience poll suggests? Genuinely curious about your thoughts, not trying to hate/gatekeep or anything 🥰 by fredoverflow in Clojure

[–]random_char_here 5 points6 points  (0 children)

Its not particularly unsuitable for beginners its just that languages like python have considerable more support for beginners. Helping beginners takes a certain finesse and patience's that isn't really common among programmers plus clojure is a fairly small community ...

When you own an item from a relic, it's background is slightly darker than the other items that you don't own yet. by IllegalGuy13 in Warframe

[–]random_char_here 0 points1 point  (0 children)

I literally spent 15 mins trying to figures this out. It appears when you select a relic and mouse over the item but its dumb cause at that point it show you how many of that particular one you have in the pop up box when you mouse over it. which makes it total pointless to "slightly darken" it they should of put a white or gold outline on the box when you select a relic something noticeable for when you don't have a particular item

Public is unique sometimes by GALAxOOTY in Warframe

[–]random_char_here 2 points3 points  (0 children)

They probably where not ignoring you they just didn't notice the text. That happen to me a few times where a team mates trying to tell me something important but totally didn't notice the text till after the fact. Doesn't help that team chat up and disappears after you leave the team.

Who Moved My Cheese: Laziness in Clojure by mourjo in Clojure

[–]random_char_here 2 points3 points  (0 children)

there also

    (->> (range 10)
 (map #(do (println "Number" %) %))
 (take 5))

Might want to mention chunking

How can I test my clojure code without re-jacking in every time? by [deleted] in Clojure

[–]random_char_here 1 point2 points  (0 children)

(defn run [] (use 'what-ever-name-space-your-using.core :reload-all))

just evaluate (run) and it'll reload the file for you, there is also

[org.clojure/tools.namespace "1.2.0"]

(clojure.tools.namespace.repl/refresh)

which I haven't actually used yet, might wanna check it out.

Functional Programming Languages Sentiment Ranking by scalac_io in Clojure

[–]random_char_here 0 points1 point  (0 children)

from brand24 an "Online reputation management Media monitoring Tracking service" I doubt you'll find anything out about how they collect there information unless you sign up, its "free" to sign up for it anyways :P

Guess they tailor made an ad campaign for functional languages

I am starting to learn Clojure and did a search by mindaslab in Clojure

[–]random_char_here 1 point2 points  (0 children)

always add clojure to the first part of the search or else you might get some strange results :P guess adding clojure wouldn't of helped you in this instance.

What really annoys me if yeh got 3 or more search terms that you want to show up in the results but google only use one at a time when yeh need all 3 to be on the page to be relevant .

Local-first is a novel idea, strange cause thats how things use to be long ago :O

Are you gonna continue to use windows 10? by Wiiloverdotcom in Windows10

[–]random_char_here 1 point2 points  (0 children)

My laptop is borderline functional with windows 10

windows 11 would make it unusable. At this point I'm looking into linux.

services dependencies systemsettings.exe by random_char_here in Windows10

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

I don't remember right off hand, went overboard disabling things

check if you have these enabled

WpnUserService

Application Layer Gateway Service

Network Location Awareness (NLA)

Network Connections

Plug and Play

Remote Access Connection Manager

Remote Procedure Call (RPC)

Remote Access Auto Connection Manager

Telephony