Image we have the following code:
<script>
var TOKEN="abcdef";
</script>
/** | |
* Hello World | |
*/ | |
background: lightblue; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>Holy Grail</title> | |
<style> | |
/* some basic styles. nothing to do with flexbox */ | |
header, footer, | |
nav, article, aside { | |
border: 1px solid black; |
Getting the Source | |
$ cd ~/source | |
$ curl -L -O http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz | |
$ tar -zxvf lame-3.99.5.tar.gz | |
$ rm -r lame-3.99.5.tar.gz | |
$ cd lame-3.99.5 | |
Installing | |
$ ./configure | |
$ make |
group:Employee Database | |
EMPLOYEE = { | |
Fname,Minit,Lname,Ssn,Bdate,Address,Sex,Salary,Super_ssn,Dno | |
John,B,Smith,123456789,1965-01-09,"731 Fondren, Houston TX",M,30000,333445555,5 | |
Franklin,T,Wong,333445555,1965-12-08,"638 Voss, Houston TX",M,40000,888665555,5 | |
Alicia,J,Zelaya,999887777,1968-01-19,"3321 Castle, Spring TX",F,25000,987654321,4 | |
Jennifer,S,Wallace,987654321,1941-06-20,"291 Berry, Bellaire TX",F,43000,888665555,4 | |
Ramesh,K,Narayan,666884444,1962-09-15,"975 Fire Oak, Humble TX",M,38000,333445555,5 | |
Joyce,A,English,453453453,1972-07-31,"5631 Rice, Houston TX",F,25000,333445555,5 |
// | |
// FileCopy.c | |
// | |
// This program copies a file from one location to another. | |
// | |
// Evan Wieland | |
// 9/6/2022 | |
// | |
#include <stdio.h> |
/** | |
* jiffies.c | |
* | |
* Kernel module that communicates with /proc file system. | |
* | |
* The makefile must be modified to compile this program. | |
* Change the line "simple.o" to "hello.o" | |
* | |
* Operating System Concepts - 10th Edition | |
* Copyright John Wiley & Sons - 2018 |
/** | |
* seconds.c | |
* | |
* Kernel module that communicates with /proc file system. | |
* | |
* The makefile must be modified to compile this program. | |
* Change the line "simple.o" to "hello.o" | |
* | |
* Operating System Concepts - 10th Edition | |
* Copyright John Wiley & Sons - 2018 |
// | |
// Zombie.c | |
// | |
// This program creates a Zombie proc. | |
// | |
// Evan Wieland | |
// 9/26/2022 | |
// | |
#include <stdio.h> |
/** | |
* Records the amount of time to run a command. | |
* Uses shared memory. | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <fcntl.h> | |
#include <sys/types.h> |