Installations Flashcards

1
Q

What is an Integrated development environment? (IDE)

A

An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development.

An IDE normally consists of a source code editor, build automation tools, and a debugger.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Linux?

A

Just like Windows XP, Windows 7, Windows 8, and Mac OS X, Linux is an operating system.
An operating system is software that manages all of the hardware resources associated with your desktop or laptop.

To put it simply – the operating system manages the communication between your software and your hardware.

Without the operating system (often referred to as the “OS”), the software wouldn’t function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The OS is comprised of a number of pieces:

A
  • The Bootloader
  • The kernel
  • Daemons
  • The Shell
  • Graphical Server
  • Desktop Environment
  • Applications
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Linux OS: Bootloader…what is this?

A

The software that manages the boot process of your computer. For most users, this will simply be a splash screen that pops up and eventually goes away to boot into the operating system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Linux OS: The Kernal…what is this?

A

This is the one piece of the whole that is actually called “Linux”. The kernel is the core of the system and manages the CPU, memory, and peripheral devices. The kernel is the “lowest” level of the OS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Linux OS: Daemojs…what is this?

A

These are background services (printing, sound, scheduling, etc) that either start up during boot, or after you log into the desktop.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Linux OS: The Shell…what is this?

A

You’ve probably heard mention of the Linux command line. This is the shell – a command process that allows you to control the computer via commands typed into a text interface.
This is what, at one time, scared people away from Linux the most (assuming they had to learn a seemingly archaic command line structure to make Linux work). This is no longer the case.
With modern desktop Linux, there is no need to ever touch the command line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Linux OS: Graphical Server…what is this?

A

This is the sub-system that displays the graphics on your monitor. It is commonly referred to as the X server or just “X”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Linux OS: Desktop Environment…what is this?

A

This is the piece of the puzzle that the users actually interact with. There are many desktop environments to choose from (Unity, GNOME, Cinnamon, Enlightenment, KDE, XFCE, etc). Each desktop environment includes built-in applications (such as file managers, configuration tools, web browsers, games, etc).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Linux OS: Applications…what are they?

A

Desktop environments do not offer the full array of apps. Just like Windows and Mac, Linux offers thousands upon thousands of high-quality software titles that can be easily found and installed.

Most modern Linux distributions (more on this in a moment) include App Store-like tools that centralize and simplify application installation.

For example: Ubuntu Linux has the Ubuntu Software which allows you to quickly search among the thousands of apps and install them from one centralized location.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Linux OS: What is a “distribution?”

A

AKA “Distros”. Different “flavours” or versions for Linux that can suit many different users. These can include: Ubuntu Linux, Linux Mint, Arch Linux, Deepin, Fedora, Debian, openSUSE, etc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the difference between Back-End and Front-End Installations?

A

In software engineering, the terms front end and back end refer to the separation of concerns between the presentation layer (front end), and the data access layer (back end) of a piece of software, or the physical infrastructure or hardware. In the client–server model, the client is usually considered the front end and the server is usually considered the back end, even when some presentation work is actually done on the server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are Back-End Installations?

A

Usuallyatching considered the server end, the “hard” end and the data acess layer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are Front-End Installations?

A

Usually considered to be the client end, the “soft” end, and presentation layer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Why shouldn’t you use Windows to learn coding?

A
  • Because many of the required scripts, programs were originally written for Linux.
  • Can cause a lot of frusteration and can discourage you from learning.
  • You will quickly find all sorts of troubles and misunderstandings, mismatching versions, installers etc. that you will need to constantly resolve manually. Not fun.
  • Last but not least, familiarity with Linux can look great on a CV!
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a virtual machine?

A

Sort of like an emulator. (Like those video game ones) A virtual machine emulates another computer system.

17
Q

What is Dual Booting?

A

This essentially means when you boot up your computer you will be brought to a screen that will allow you to choose which operating system you want to use, either your Windows operating system or your new Linux operating system.

18
Q

What is Windows Subsystem for Linux?

A
  • This is a fully operational Linux Bash Shell running natively on Windows.
  • Used alongside Ubuntu, Kali, etc.
  • If you have a 64-bit version of Windows 10 Anniversary Update build 14393 or later, another option is to install the Windows Subsystem for Linux.
19
Q

What is an Online Integrated development environment (IDE)

A

These are similar to Virtual machines, except that they run directly in your browser.

20
Q

What is Ruby?

A

-A back-end language that is used to write server code.

21
Q

What is Git/Github?

A
  • a version control system
  • Github keeps repositories of your source code
  • You’ll also be asked to create your Github account, which is very important because it’ll host your portfolio. When people visit your repo on Github (if it’s public), they see all the source code files you’ve uploaded.
22
Q

What is Heroku?

A
  • A cloud housting service
  • Where our web applications are “live”
  • Sort of like Github, but Heroku actually runs that code on a server for you so your application can be visited by users.
23
Q

What is HTML, CSS and Javascript?

A
  • No need to install, they come with your web browser already!
  • but in later courses, you may actually start using Javascript on your computer as a server-programming language (Node.js)
24
Q

What is a text editor?

A

-Can range from a simple editor like Notepad, to a more complex editor like Sublime text or Atom

25
Q

What is Sublime text?

A
  • A text editor with many handy shortcuts, highlights etc.

- Highly recomended to use instead of just a simple text editor like Notepad.

26
Q

What are Ruby Gems?

A

-There will be some Ruby gems (which are just prepackaged little libraries of code) to install to give you the tools necessary to talk to your database and install other gems easily in the future.

27
Q

What is RVM?

A
  • RVM is a way of making sure that each Ruby or Rails project on your computer is treated independently of each other.
  • It allows you to install multiple versions of Ruby and multiple versions of Rails or any other gem on your computer and then you can choose which set to use for a given project.
28
Q

What is Rails?

A

What about Rails? Rails is actually a Ruby gem of its own since it’s really just a bunch of Ruby code prepackaged for you. You “install” it by downloading the -rails- gem.

29
Q

What is Mac: Xcode?

A
  • XCode is Apple’s integrated development environment for creating Mac, iPhone and iPad applications.
  • Even though we won’t be using it for that purpose, it’s also got some command line tools that you’ll be using so you’re probably going to have to install it all (it’s a giant package).