technet
install kali on raspberry pi 3 model b // Woongyeol_choi // P453075 // 11/10/2017 // woongyeol_choi_P453075_AT1.4 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace woongyeol_choi_P453075_AT1._4 { public partial class Form1 :..
one-to-one training w11 recap advantages- direct feedback (ask more questions)- focused training- easier to communication- less stressful- more practical demonstration (immediate practice of learned skills)- less distractions- faster training (pre individual) formal informal- strict process- safety (construction, police)- policy- formal assessment disadvantages- overall takes longer (multiple le..
From now on, Mac refer Apple product including iMac, Macbook. PC means Non-Apple product, may include linux but in this document only refer windows PC. Mac has closing button at left top but PC has right top.Mac use Dock (default bottom), PC use taskbar (default bottom)Mac use a bar at the top for menu, PC doesn't.Mac based on Unix, PC based on DosMac use its own file system (Mac Os Extended) an..
Data integrity.data recoverynetwork integritynetwork recoveryaccess to computer should be always loggeddifference between a restore point and a backup using software (eg. wireshark, netanalyzer) to track suspicious IP addressinghow to stop pivacydata integrity scan - software tolerant volumesystems for corruption (hardwre) and the system file check (SFC) scan and repairsystem files and DISM (Dep..
One to one instruction Everyone do one-to-one instructionfew do ictict 202 one to one instruction - ictict 415 training someone on an individual basis (one learner, one instructor) Most one-to-one instruction is informal - more comfortable - even ground - loose structure - facilitator - more feedback (constructive)sometimes one-to-one training is formal- set procedures- specific processes- safet..
git init creates a new Git repository git status inspects the contents of the working directory and staging area git add adds files from the working directory to the staging area git diff shows the difference between the working directory and the staging area git commit permanently stores file changes from the staging area in the repository git log shows a list of all previous commits
AT2 //requirements. //Portfolio Assessment Activity AT1.3 //Q.6 Create a Windows Forms Application that sorts a list of random number by using the Shell Sort //algorithm. The program must use an Array of 29 integers. After each iteration the program must //display the Array. //procedure shellSort(array[]) //gap = array length //WHILE gap > 0 //FOR i = 0 TO arraylength-1 // j = i; //temp = array[..
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 ..