User talk:Ksaareme: Difference between revisions

From ICO wiki
Jump to navigationJump to search
Ksaareme (talk | contribs)
Ksaareme (talk | contribs)
 
(76 intermediate revisions by the same user not shown)
Line 1: Line 1:


== Reference page for I600 exam ==
== Statistics I604 ==
----
Primary Study Materials:
'''Course Homepage:'''  http://www.cs.ioc.ee/ITKStat
'''e-Book:'''          http://onlinestatbook.com/Online_Statistics_Education.pdf


== Useful linux commands ==
Primary Software:
*'''lsb_release -a''' to check OS
'''R:''' https://www.r-project.org/
*'''uname -sr''' to check OS kernel
 
*'''cat /proc/cpuinfo''' and check processor information.  
== Python I703 ==
*'''arch''' to check CPU architecture
 
*'''cat /proc/meminfo''' to check memory usage, RAM
 
*'''lspci -t -v -nn''' to enumerate PCI and PCI Express devices
    Get an idea what to do by next week. Ideas:
*'''lsusb and lsusb -t''' to enumerate USB devices
    '''1. Pyglet,pygame or kivy for a game or simulation:'''
*'''fdisk -l''' to enumerate disks and partitions
    1.1. MP beat em' up
*'''lsblk''' to enumerate block devices
    1.2. Survival space sim, use webcam for dynamic view
*'''xrandr''' to enumerate display outputs
    1.3. Planet rotation simulation
*'''cat /proc/asound/cards''' to check which audio devices are available
    '''Check out '''
*'''dmidecode''' to see even more information about your computer
    http://nehe.gamedev.net/
*'''ifconfig -a or ip addr list''' to list all network interfaces
    http://learnpythonthehardway.org/
*'''iwconfig or iw list''' to list all wireless network interfaces
 
*'''hcitool dev''' to list bluetooth host controller.
    '''2. WebApp'''
*'''glxinfo''' to check 3D rendering capabilities
    2.1. Budget Management with a GUI
*'''lscpu''' info about cpu and processing units
 
*'''lshw - short''' info about hardware units, such as cpu, memory, disk, usb controllers, network adapters
    '''Notes:'''  
*'''hwinfo –short''' info about hardware utility stuff
    * Set up RPi web-server
*'''lspci''' info about pci buses and devices connected to them
    * Use '''XMind''' to map the idea first
*'''lsscsi''' info about sata/scsi devices
    * Run basic website and deploy webapp to it.
*'''lsusb''' info about usb controllers and devices
    * Check out RPi components and sensors.
*'''lsblk''' block information, harddrive partitions
    * Buy a breadboard.
*'''df –H''' info about disk space and partitions that are mounted
    * Check out Notepad++
*'''fdisk –l'''  info about partitions
 
*'''free –m''' info about used, free and total amount of RAM
== Web Application Programming I702 ==
*'''hdparm –i''' info about sata devices
'''node.js'''
'''ngix'''
'''nchan'''
 
'''Useful links:'''
  http://enos.itcollege.ee/phpmyadmin/
  http://enos.itcollege.ee/~ksaareme
 
'''W3C validation:''' https://validator.w3.org/
 
== Node.js ==
 
Stuff about node.js.
 
== Operating Systems ==
 
Command line:
 
    '''Options modify the behavior of commands:'''
        ls -a lists all contents of a directory, including hidden files and directories
        ls -l lists all contents in long format
        ls -t orders files and directories by the time they were last modified
        Multiple options can be used together, like ls -alt
    '''From the command line, you can also copy, move, and remove files and directories:'''
        cp copies files
        mv moves and renames files
        rm removes files
        rm -r removes directories
    '''Wildcards are useful for selecting groups of files and directories'''
 
 
 
    '''Redirection reroutes standard input, standard output, and standard error.'''
 
    '''The common redirection commands are:'''
        > redirects standard output of a command to a file, overwriting previous content.
        >> redirects standard output of a command to a file, appending new content to old content.
        < redirects standard input to a command.
        | redirects standard output of a command to another command.
 
    '''A number of other commands are powerful when combined with redirection commands:'''
        sort: sorts lines of text alphabetically.
        uniq: filters duplicate, adjacent lines of text.
        grep: searches for a text pattern and outputs it.
        sed : searches for a text pattern, modifies it, and outputs it.

Latest revision as of 13:57, 6 February 2016

Statistics I604

Primary Study Materials:
Course Homepage:  http://www.cs.ioc.ee/ITKStat
e-Book:           http://onlinestatbook.com/Online_Statistics_Education.pdf
Primary Software:
R: https://www.r-project.org/

Python I703

    Get an idea what to do by next week. Ideas:
    1. Pyglet,pygame or kivy for a game or simulation:
    1.1. MP beat em' up
    1.2. Survival space sim, use webcam for dynamic view
    1.3. Planet rotation simulation
    Check out 
    http://nehe.gamedev.net/
    http://learnpythonthehardway.org/
    2. WebApp
    2.1. Budget Management with a GUI
   Notes: 
   * Set up RPi web-server
   * Use XMind to map the idea first
   * Run basic website and deploy webapp to it. 
   * Check out RPi components and sensors. 
   * Buy a breadboard.
   * Check out Notepad++

Web Application Programming I702

node.js
ngix
nchan
Useful links:
  http://enos.itcollege.ee/phpmyadmin/
  http://enos.itcollege.ee/~ksaareme
W3C validation: https://validator.w3.org/

Node.js

Stuff about node.js.

Operating Systems

Command line:

   Options modify the behavior of commands:
       ls -a lists all contents of a directory, including hidden files and directories
       ls -l lists all contents in long format
       ls -t orders files and directories by the time they were last modified
       Multiple options can be used together, like ls -alt
   From the command line, you can also copy, move, and remove files and directories:
       cp copies files
       mv moves and renames files
       rm removes files
       rm -r removes directories
   Wildcards are useful for selecting groups of files and directories


   Redirection reroutes standard input, standard output, and standard error.
   The common redirection commands are:
       > redirects standard output of a command to a file, overwriting previous content.
       >> redirects standard output of a command to a file, appending new content to old content.
       < redirects standard input to a command.
       | redirects standard output of a command to another command.
   A number of other commands are powerful when combined with redirection commands:
       sort: sorts lines of text alphabetically.
       uniq: filters duplicate, adjacent lines of text.
       grep: searches for a text pattern and outputs it.
       sed : searches for a text pattern, modifies it, and outputs it.