Skip to content

Instantly share code, notes, and snippets.

View chyld's full-sized avatar
:electron:
import numpy

Chyld Medford chyld

:electron:
import numpy
View GitHub Profile
Instructions for grading programming assessment:
- Open Cloud 9 IDE
- Find out which language the tester chose
- Use the git commit messages to determine
- If no commits were made, then manually look for written code
- Run the app
- Open terminal and run the app with any necessary parameters
- Does the app run for all given requirements?
- Unit testing
--------------------------------------------------------------
### get a list of available GPUs
from tensorflow.python.client import device_lib
for d in device_lib.list_local_devices():
print(d.name, d.physical_device_desc)
--------------------------------------------------------------
We can't make this file beautiful and searchable because it's too large.
student_id,assignment1_grade,assignment1_submission,assignment2_grade,assignment2_submission,assignment3_grade,assignment3_submission,assignment4_grade,assignment4_submission,assignment5_grade,assignment5_submission,assignment6_grade,assignment6_submission
B73F2C11-70F0-E37D-8B10-1D20AFED50B1,92.73394640624123,2015-11-02 06:55:34.282000000,83.03055176561709,2015-11-09 02:22:58.938000000,67.16444141249367,2015-11-12 08:58:33.998000000,53.01155312999494,2015-11-16 01:21:24.663000000,47.710397816995446,2015-11-20 13:24:59.692000000,38.16831825359636,2015-11-22 18:31:15.934000000
98A0FAE0-A19A-13D2-4BB5-CFBFD94031D1,86.79082085792986,2015-11-29 14:57:44.429000000,86.29082085792986,2015-12-06 17:41:18.449000000,69.7726566863439,2015-12-10 08:54:55.904000000,55.0981253490751,2015-12-13 17:32:30.941000000,49.5883128141676,2015-12-19 23:26:39.285000000,44.62948153275085,2015-12-21 17:07:24.275000000
D0F62040-CEB0-904C-F563-2F8620916C4E,85.51254106831485,2016-01-09 05:36:02.389000000,85.51254106831485,2016-01-09 06:39
[alias]
br = branch -av
rt = remote -v
up = remote update
s = status -sb
acp = !git add . && git commit -am \"$1\" && git push && git status
l = !git --no-pager log --oneline --decorate --graph -10
[user]
email = [email protected]
name = Chyld Medford
code --install-extension CoenraadS.bracket-pair-colorizer
code --install-extension SirTori.indenticator
code --install-extension formulahendry.auto-close-tag
code --install-extension formulahendry.auto-rename-tag
code --install-extension formulahendry.code-runner
code --install-extension hnw.vscode-auto-open-markdown-preview
code --install-extension mechatroner.rainbow-csv
code --install-extension ms-python.anaconda-extension-pack
code --install-extension ms-python.python
code --install-extension njpwerner.autodocstring
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"window.zoomLevel": 0,
"editor.formatOnSave": true,
"explorer.openEditors.visible": 0,
"extensions.showRecommendationsOnlyOnDemand": true,
}
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
USE ASSERT
NO FOR LOOPS, can use list comprehension
just jupyter if you want
sql questions
"hello world" into dictionary, counter
palindrome
chess board 1s, 0s
compute the nth fibonnaci
tower of hanoi ???
.box {
background-color: tomato;
display: inline-block;
margin: 20px;
padding: 20px;
border: 1px solid teal;
}
<html>
<head>