on being a noobie Linux Mint User and learning to Problem solving with C++
Don't wanna be here? Send us removal request.
Link
All you need without having to install Linux on you comp. If you have an android device, this is where it’s at!! Better than Terminal ide the prof. recommend unless you want to practice running the programs from a traditional terminal. You won’t learned or practice bash commands, but to write compile and run a program to see if it works then this works great!!!
0 notes
Photo
Epic!!! They most fear getting the space station hacked, dropping it on some terrorists .....
Between this, Steam OS, Linux Mint 16, the Linux kernel’s total domination of smartphones and tablets (Yes, Android IS a flavor of Linux), and the way Adobe Illustrator and Photoshop CS6 run on Linux in Wine, things are looking pretty good for ol’ Tux.
(Source) (Other Source)
88 notes
·
View notes
Photo
Funniest. WTF FACE at subzero temp.

Disculpe, ¿Tiene un momento para que le hable de Linux?
9 notes
·
View notes
Text
How their made...
The previous week we learned some pretty basic stuff but need to know none the less. and that was "What is an editor and how to use it".
An editor is much like Notepad on a windows, it's a blank white window with really ugly fonts that make it the most monotonous writing tool there is, however this is so only if viewed as a word processor. there are many editors some designed specifically for certain languages but all have the same function or purpose, they are a source code writing tool. These are designed to be sure in the writing of a program's original script. this source code is written in what are called high level languages (such as C++, Unix, Python, DOS, etc.).
The preferred editor used by my course professor is named Emacs and is actually a a very simplistic looking program that seems easy enough to follow.
We were assigned a simple exercise, we were to come up with a simple program that asked for input to later produce an output, such as a problem of addition or multiplication.
I keed ! I keed! ...the professor gave us an already written script which we then learned to compile, link and run.
Compiling translates the written source code into the language of the machine (machine code, or better known as object code). After a compilation the translation is linked to other programs by a linker which then produces a executable program.
To compile we find the source code file with the .cpp ending with the computer terminal and the write:
g++ -Wall -c some_scketchy_name_program.cpp
and then link the produced object code (has a .o ending) like:
g++Â -o PROGRAMNAME some_scketchy_name_program.o
.....or we can do both at once like this:
g++ -Wall -o -some_scketchy_name_program.cpp
Here is the "source code"of the program.
I would give readers more details but then again you would have to pay me for taking a full college course for you. ;P
0 notes
Text
Some Background
A Linux distribution (often called distro for short) is an operating system built on top of the Linux kernel and often around a package management system. Short and sweet huh....lets break it down though, starting with what is a Linux distribution operating system? Now I know you know that an operating system is the software pre-installed on a computer when you buy it at the store, you know, like Windows or Mac, or Android for your smart-phones, but those aren't the only ones!! Linux is the refers to open-source operating systems (translation It’s FREE to own/use and develop) which utilize the Linux kernel. This means that anyone can take an existing copy of a Linux distribution and alter its source code for your personal needs and it's not illegal or breaks your warranty or any of that like,unlike Windows, its free and public. These operating systems are call Linux because they utilize the Linux Kernel, but what's a kernel? In layman's terms its the bridge between the software (your operating system) and your hardware (your physical computer equipment). So no matter how different an operating system if different from another, if they utilize this kernel, there classified as Linux distributions. :D There are many open-source Linux distros, but the original idea of trying from the commercial Unix OS was the GNU project. The GNU became a platform and forefather to many Linux distros thus dubbed GNU/Linux.
0 notes
Text
Syntac Basics
http://www.cs.wustl.edu/~schmidt/PDF/C++-C-portions4.pdf
Found lecture notes that overly simplify some of my past programming traumas. this helped me Understand the differences between the loop commands!!!
0 notes
Link
0 notes
Link
0 notes
Photo

Hello Everybody!!!
As of last Wednesday the semester has begun!!! [ horrid truth, :'( ]
Long story short, this blog page will be my "Killing two birds with one stone" page as it is a requirement to maintain and publish topic related content for my "Problem solving and Programming with C++" course. to only will I try to provide content on everything concerning this but also information, images, jokes and etc. about Linux (Mint 16), which I have recently converted to. though I've used Linux on my machines before, never to the extent that it feels your exploiting its true potential.
0 notes
Photo
I'm expecting to feel like this very often throughout this semester. Mostly trying to find out why it Won't compile rather then why it won't run.
What it feels like when your code complies but it doesn’t work right.
2K notes
·
View notes