View fs_capabilities.m
This file contains 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
// | |
// fs_capabilities.m | |
// | |
// Created by Charles Francoise on 13/05/14. | |
// Copyright (c) 2014 Charles Francoise. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <errno.h> |
View fs_capabilities.m
This file contains 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
// | |
// fs_capabilities.m | |
// | |
// Created by Charles Francoise on 13/05/14. | |
// Copyright (c) 2014 Charles Francoise. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <errno.h> |
View gist:2922280
This file contains 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
//Nicole Buck | |
//Prog 109 Project 3 | |
var bet = 0; | |
var credits = 100; | |
var count = 0; | |
var slotImages = new Array("lemon.png", "plum.png", "bell.png", "diamond.png", "clover.jpg"); |
View gist:2918213
This file contains 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
public void SavingFile() | |
{ | |
StreamWriter writer = new StreamWriter("books.txt"); | |
foreach (Book book in books) | |
{ | |
writer.WriteLine(book.ToString()); | |
} | |
} |
View Week05Assig
This file contains 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
/*This program was created by Hadossa Oudean.*/ | |
import java.io.*; | |
import javax.swing.*; | |
public class Week05 { | |
static File select; | |
static String path; | |
static boolean okay; | |
static boolean foundIt; |
View gist:1299663
This file contains 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> | |
int main() | |
{ | |
for(int y = 1; y <= 50; y++){ | |
for(int x = 1; x <= 3; x++){ | |
std::cout << y*x << "," | |
} | |
std::cout << std::endl; | |
} | |
return 0; |
View gist:1268993
This file contains 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
// Lab 2 | |
// Jeff Heesch | |
// 10/5/11 | |
// Purpose: To perform mathematical operations on two numbers | |
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() |