This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shingeki no Kyojin Season 3 Part 2 | |
Gintama° | |
Gintama' | |
3-gatsu no Lion 2nd Season | |
Ginga Eiyuu Densetsu | |
Haikyuu!!: To the Top | |
Koe no Katachi | |
Clannad: After Story | |
Gintama': Enchousen | |
Gintama |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZSH=$HOME/.oh-my-zsh | |
plugins=(git ruby rails sublime web-search) | |
ZSH=$HOME/.oh-my-zsh | |
source $ZSH/oh-my-zsh.sh | |
# Customize to your needs... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- CS 381 Spring 2013 - Homework 4 (Runtime Stack, Scoping, Parameter Passing) | |
-- Team Members: | |
-- Brandon West | |
-- Quintin Cummins | |
-- Francis Vo | |
-- | |
-- Exercise 1. Runtime Stack | |
-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 58.4 0.321 0.12 //Thermal Conductivity, Density, and Specific Heat | |
// 0.0 0.0 100.0 //Initial temp, and boundary conditions | |
// 30 30 //Length of wire and sections | |
// 50 .000335 //Time intervals and change in time | |
#include <stdio.h> | |
#include <stdlib.h> | |
int update(float **bob); | |
float k, p, c; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parametric Polymorphism | |
a) | |
1) f :: [a] -> a -> [a] | |
g :: [a] -> b -> [b] | |
2) f: We know that [y] and x is the same type, so the type y is in x. | |
g: We know that [] and [y] are the same type, so we don't know anything about x other than it is an array. | |
3) | |
4) | |
b) | |
h x:xs (a,b):ys = b:xs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, char **argv) | |
{ | |
short val; | |
char *p_val; | |
p_val = (char *) &val; | |
/* | |
The following two lines assume big-endian | |
Architecture to initialize the variable Val |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
About: | |
-- This is quick way for new user to understand the project | |
Homepage: | |
-- This is to help redirect people to where they want to know | |
Chiliproject: | |
-- Brief description of all features and redirect them to more information | |
Commercial Offerings | |
Differences Between Chiliproject and Redmine | |
FAQ | |
Objectives and Goals |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Exercise 1. Mini Logo -- | |
-- Part A | |
data Cmd = Pen Mode | |
| Moveto Coord | |
| Def [Char] Pars Cmd | |
| Call [Char] Vals | |
| C Cmd Cmd | |
deriving Show |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <unistd.h> | |
#include <sched.h> | |
#include <time.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#define SCHEDULER SCHED_FIFO | |
#define TIMESLICE 1 | |
struct sched_param param; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "dialog.h" | |
#include "ui_dialog.h" | |
#include <linux/i2c-dev.h> | |
#include <stdio.h> | |
#include <fcntl.h> | |
#include <stdlib.h> | |
#include <errno.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <iostream> |
NewerOlder