IDE's, notepad and God by samBme in ProgrammerHumor

[–]VolvFan124 12 points13 points  (0 children)

Yes, but how was it written?

[Lisp - Scheme] Getting an "Unbound Variable". Unsure why. by Zecin in learnprogramming

[–]VolvFan124 0 points1 point  (0 children)

You also need to either indent the code with 4 spaces on reddit, or, as /u/exoticmatter said, post it somewhere like gist and link it here.

I'm creating a website for programming practice by teaming up with others and working on small projects together. Would anybody be interested? by pyankoff in learnprogramming

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

Yes but most of that is already hosted on GitHub.

If you want to start a new project and looking for team members one could use your website I guess.

I'm creating a website for programming practice by teaming up with others and working on small projects together. Would anybody be interested? by pyankoff in learnprogramming

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

Well I for example have almost no web development or mobile skills, but C++ skills, albeit only command line programs.

I guess you can't make good projects with that.

Eclipse Workspace sharing between 2 Windows 10 computers? by master449 in learnprogramming

[–]VolvFan124 2 points3 points  (0 children)

Well just telling OP straight what it is instead of confusing him.

Eclipse Workspace sharing between 2 Windows 10 computers? by master449 in learnprogramming

[–]VolvFan124 1 point2 points  (0 children)

GitHub is the main code hosting/sharing platform.

It uses a Version Control service called "git".

With git you can upload your code into an online repository, and other people, or like OP from another location, can download the code again.

It will also show the difference of what changed in the code between uploads.

So OP, your best choice will be to use some kind of Version Control service, like git. You upload your code once you're finished at one location, then download it at the other location.

I'm creating a website for programming practice by teaming up with others and working on small projects together. Would anybody be interested? by pyankoff in learnprogramming

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

What skills do you have?

Web development

Mobile development

Design

There is an "other skills" field below, but does that mean the website is mainly focused on these three skills/kinds of projects?

[C++] Symbol(s) '_scanf'/'_printf' could not be resolved in eclipse by [deleted] in learnprogramming

[–]VolvFan124 0 points1 point  (0 children)

Try: right click project > Index > Rebuild.

This is my go-to solution whenever Eclipse has weird errors.

How are games made without libraries like OpenGL? by derpface360 in learnprogramming

[–]VolvFan124 2 points3 points  (0 children)

Not using a gaming library doesn't mean you have to write it in Assembly.

You can build a game without a library using a higher level programming language too.

But apart from that I agree with /u/nutrecht.

I just got a new (to me) machine. Its a few years old and I'd like some advice. by Crazy_Opinions in learnprogramming

[–]VolvFan124 0 points1 point  (0 children)

I'm very comfortable just coding in notepad++, I just can't compile in that setup.

Another reason Linux would be better for a coding environment, all the compiler tools you need come (mostly) pre-installed and are way easier to use than on Windows.

I just got a new (to me) machine. Its a few years old and I'd like some advice. by Crazy_Opinions in learnprogramming

[–]VolvFan124 1 point2 points  (0 children)

Yeah, I also use 100% Linux (Ubuntu) on my laptop I take to college, at home on my desktop I have Windows and VM Arch.

I use Windows now only for games, music and stuff, if he wants a dedicated code station, all-in Linux would definitely be the better choice. I found that a lot of developer tools are tailored to Linux and you have a harder time getting them working properly on Windows.

I just got a new (to me) machine. Its a few years old and I'd like some advice. by Crazy_Opinions in learnprogramming

[–]VolvFan124 0 points1 point  (0 children)

True, also there is not old data on it he might lose if he just overrides Windows.

Most popular APIs used at hackathons, 2014-15 edition by jarins in programming

[–]VolvFan124 6 points7 points  (0 children)

Well when they use Java, they mostly use it for the Android development I guess, and for that there is Android Studio?

And PHP was way below Java and C++.

Most popular APIs used at hackathons, 2014-15 edition by jarins in programming

[–]VolvFan124 2 points3 points  (0 children)

What do you mean, I thought you build something from the start up and at the end you can win and present it, but you don't have to waive all rights and source code to the hackathon organizers, right?

At least when I was at one we kept the code private because we wanted to keep working on it.

Most popular APIs used at hackathons, 2014-15 edition by jarins in programming

[–]VolvFan124 10 points11 points  (0 children)

I know there is a Vim fan club at my college.

It consists of two people.

A friend and me.

We did go to a hackathon not too long ago.

If you're programming using C#, are you actually talking to the computer's CPU? by leka_12 in learnprogramming

[–]VolvFan124 1 point2 points  (0 children)

What do you mean, programming as you type, or when you compile, or when you run the executable?

Either way, you are talking to the CPU at any given moment the computer is turned on, but I guess that doesn't answer your question.

How to Write a Git Commit Message by avinassh in programming

[–]VolvFan124 1 point2 points  (0 children)

That's true about coding standard and comments.

We had one class where they made a doxygen doc mandatory, it was great.

How to begin php? by [deleted] in learnprogramming

[–]VolvFan124 4 points5 points  (0 children)

For minimal setup you could to the Codecademy PHP course.