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
/*Yoselyn Rea, 10/09/17, Large Program 1, Letter Guessing Game*/ | |
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
//#include <iostream> | |
#include <ctype.h> //tolower | |
#define MAXGUESSES 5 | |
//paste all the function prototypes here | |
//with the comments | |
//this function provides instructions to the user on how to play the game |
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
{ | |
"workbench.colorTheme": "Monokai", | |
"vim.disableAnnoyingNeovimMessage": true, | |
"window.zoomLevel": 1, | |
"files.autoSave": "onFocusChange", | |
"window.restoreWindows": "all", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.explorerKind": "integrated", | |
"workbench.fontAliasing": "antialiased" | |
} |
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
#!/usr/bin/env python | |
# global vars | |
varInt=1 | |
varFloat=1.1 | |
varStr="Hello World" | |
varList=['hello', 'world', 'this', 'is', 'a', 'list'] | |
# Doing stuff with tacos | |
print "Below are the types associated to the variables: \n" | |
print varInt,"is",type(varInt) | |
print varFloat,"is",type(varFloat) |
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
#!/usr/bin/env bash | |
sudo apt-get install ruby ruby-dev | |
sudo apt-get install imagemagick libmagickwand-dev | |
sudo gem install asciiart | |
url_of_file=$1 | |
ruby_script_var="$(cat <<EOF | |
#!/usr/bin/env ruby | |
require 'asciiart' | |
art_file = AsciiArt.new("${url_of_file}") |
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
#Tkinter calls for GUI | |
from Tkinter import * | |
import ttk | |
import Tkinter | |
import tkMessageBox | |
#Elementree and Subprocess calls | |
from xml.etree.ElementTree import ElementTree | |
from xml.etree.ElementTree import Element |
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
#Tkinter calls for GUI | |
from Tkinter import * | |
import ttk | |
import Tkinter | |
import tkMessageBox | |
#Elementree and Subprocess calls | |
from xml.etree.ElementTree import ElementTree | |
from xml.etree.ElementTree import Element |
NewerOlder