Welcome to Association for Computing Machinery at FIU! Here are some introductory resources that will get you up and running for our upcoming workshops here at ACM!
## What is GitHub? GitHub is an online code repository for the Git code management system. * [CodeSchool Git Playground](https://www.codeschool.com/courses/try-git) * [Quick Git Guide](http://rogerdudler.github.io/git-guide/)
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
| module Log where | |
| import Control.Applicative | |
| data MessageType = Info | |
| | Warning | |
| | Error Int | |
| deriving (Show, Eq) | |
| type TimeStamp = Int |
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
| import math | |
| """ | |
| Fibonacci recurrence relation of the form | |
| fsubn - fsub(n-1) - fsub(n-2) = 0 | |
| could be solved by figuring out a value | |
| q^n - q^(n-1) - q^(n-2) = 0 | |
| Then q^(n-2) * (q^2 - q - 1) = 0 | |
| We thus obtain roots |
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
| package com.termmerge.nlpcore.obtainer; | |
| import java.util.Map; | |
| import java.util.List; | |
| import java.util.function.Consumer; | |
| import java.util.logging.Logger; | |
| import java.util.ArrayList; | |
| import java.util.Properties; | |
| import java.util.Collections; |
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
| from firebase import Firebase | |
| import pydash as _ | |
| MYHONORS_FIREBASE_URL = '' | |
| MYHONORS_FIREBASE_AUTH_TOKEN = '' | |
| EVENTS_NEW_TIMESTAMP = '' | |
| """ | |
| Authorizes our access into the MyHonors Firebase database that we need |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- Intro to Python Guide - http://anandology.com/python-practice-book/index.html
- Another Intro to Python Guide - http://pymbook.readthedocs.io/en/latest/
- Quick Python Reference Sheet - https://learnxinyminutes.com/docs/python/
- Simple Data Mining and Natural Language Processing - http://www.karsdorp.io/python-course/
- Using Python with Numpy and Scipy on IPython Notebooks - http://www.scipy-lectures.org
- Computational Statistics in Python (Duke University) - http://people.duke.edu/~ccc14/sta-663-2016/index.html
- PyCon2016 Conference Videos (covers a broad range of using Python in things like Natural Language Processing) - https://www.youtube.com/channel/UCwTD5zJbsQGJN75MwbykYNw/videos
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import csv | |
| import json | |
| import sys | |
| f = open(sys.argv[1], 'rU') | |
| reader = csv.DictReader( f, fieldnames = ( fieldname0","fieldname1","fieldname2","fieldname3")) | |
| records = [ row for row in reader ] | |
| records.pop(0) | |
| out = json.dumps(records) |
