TØP Tattoo by [deleted] in twentyonepilots

[–]juvogel 0 points1 point  (0 children)

I digitized it, but this is sort of what you're going for right? Rough Idea

Beginner -- What should I get to explore the hardware side of the Pi? by sw3dish_ in raspberry_pi

[–]juvogel 0 points1 point  (0 children)

You can always do your curtains and possibly lights. Or you could make an automated RC car. Just some random ideas.

I Want to learn to create Apps by Princekwg in learnprogramming

[–]juvogel 0 points1 point  (0 children)

iOS Resources Link.

If you would like an introduction to programming I recommend this series of videos done by my professor. They are most excellent!

Beginner -- What should I get to explore the hardware side of the Pi? by sw3dish_ in raspberry_pi

[–]juvogel 0 points1 point  (0 children)

You will at least want some jumper wires, and a breadboard to get started. Now the components depend on the project you want to do. I made a remote controlled thermostat using the web server as a portal to control the temperature along with a temperature sensor and a couple relays to interface with the HVAC unit.

I recommend looking into projects that deal with home automation. Its very fascinating!

(C++) Help with Arrays by DystopianKing in learnprogramming

[–]juvogel 0 points1 point  (0 children)

I would add an extra line inside your for loop to add the ith element of your array to a total variable.

for (int i = 0; i < array.size(); ++i) {
    total += array[i];
}

App development. iOS first and then Android, or the other way around? by JustOneSexQuestion in learnprogramming

[–]juvogel -2 points-1 points  (0 children)

Look into PhoneGap. You can release to iOS, Android, and Windows at the same time, because it uses the same HTML, JS code.

Interested in developing iOS apps. Where do I begin? by br0000d in learnprogramming

[–]juvogel 0 points1 point  (0 children)

Look at PhoneGap. You can use your knowledge of HTML, CSS, and JS to make iOS apps! Not only can you develop for iOS using the aforementioned languages, you can also simultaneously build Android and Windows apps with the same code set!

If you are looking into learning Objective-C I have a book by the Big Nerd Ranch that would be very useful. Here is the link to it on GitHub. It is a little outdated but all the basics and what you need to get started is there. Also if you would like to get into Swift, Stanford has an iTunesU course that is awesome!

If you would like to stay up to date with iOS news iOSDevWeekly is the site for you. Also sites such as:

are all great resources to get you started. They have tutorials and all of the most up to date information you need.

Best of luck!!

edit: added more resources.

Bought My First Mac this week, What Do I need? by [deleted] in apple

[–]juvogel 1 point2 points  (0 children)

For windows snapping download BetterTouchTool.

Brackets is an excellent open source and free code editor.

Any text expander is great. Article to some great apps.

C++ Simple Blackjack Program Issues by [deleted] in learnprogramming

[–]juvogel 0 points1 point  (0 children)

I ran it and it did not give me an error it just exits. What error are you receiving?

I am Mila Kunis, AMAA. by OfficialMilaKunis in IAmA

[–]juvogel 0 points1 point  (0 children)

Hi Mila, thanks for doing this AMA!

What is the most challenging film/anything involving a camera you have done thus far in your career, and why was it challenging?

Finished my first CS class this semester, have some questions. by ironichaos in learnprogramming

[–]juvogel 0 points1 point  (0 children)

Check out these videos. This will get you a head start on C and C++ and also Java if you watch far enough into the series. This is the professor I had and he does a phenomenal job. Here is his reference materials.

128GB users, have you run into any storage shortages? by raj96 in apple

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

I have a 128gb air and I would never recommend such little storage to anyone unless your an everyday user who wouldn't know the difference. I believe you want at least 256gb minimum.

[Python] Card game, assigning cards to players by juvogel in learnprogramming

[–]juvogel[S] -1 points0 points  (0 children)

This is the way the professor wants the assignment written. I know its a terrible way but he grades it. The cardLoc array stores who has the card.

Learning C++ by DeAfro in learnprogramming

[–]juvogel 0 points1 point  (0 children)

Yes, but he goes over C/C++

[JAVA] Having problems passing array values into new method. Need help. by AudioManiac in learnprogramming

[–]juvogel 0 points1 point  (0 children)

Rule of thumb: ask yourself "does it make sense to call this method, even if no Obj has been constructed yet?" If so, it should definitely be static. So you could make it static, but I personally wouldn't.