I hereby claim:
- I am bitoffdev on github.
- I am bitoffdev (https://keybase.io/bitoffdev) on keybase.
- I have a public key ASDkJ0-gyKS7Jyv-8oRdQ36kwp9iak7W7J-MbygaRCG0Bgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| """ | |
| Save the files submitted to try in the current directory. | |
| Try guide: https://cs.rit.edu/~cs1/Misc/try.html | |
| Usage: | |
| [python3] try_capture.py instructor-account assignment-code |
| .text | |
| mont: li $v0,4 | |
| la $a0,d | |
| syscall | |
| jr $ra | |
| .data | |
| a:.byte 71,117,101,115,115,32,97,32,110,117,109,98,101,114,58,32,0 | |
| bb:.byte 84,111,111,32,104,105,103,104,58,32,0 | |
| .text | |
| awsq:li $v0,4 |
| # | |
| # FILE: print_binary.asm | |
| # AUTHOR: Elliot Miller, 2017 | |
| # | |
| ############################################################################### | |
| .data | |
| newline_string: .asciiz "\n" | |
| # | |
| # Name: print_binary |
| ############################################################################### | |
| ##### INSTALL ROS KINETIC ##################################################### | |
| ############################################################################### | |
| sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' | |
| sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 0xB01FA116 | |
| sudo apt-get update | |
| sudo apt-get install -y ros-kinetic-ros-base | |
| sudo rosdep init | |
| rosdep update |
| import wave | |
| import matplotlib.path as mpath | |
| import matplotlib.patches as mpatches | |
| import matplotlib.pyplot as plt | |
| fig, ax = plt.subplots() | |
| Path = mpath.Path | |
| path_data = [] |
| #include <avr/pgmspace.h> // allows use of PROGMEM | |
| #define CUBESIZE 4 | |
| #define PLANESIZE CUBESIZE*CUBESIZE | |
| #define PLANETIME 100 // time each plane is displayed in us -> 100 Hz refresh | |
| #define TIMECONST 20 // multiplies DisplayTime to get ms | |
| // store LED Pattern Table in PROGMEM | |
| // last column is display time in 100ms | |
| const char PROGMEM PatternTable[] = { |
| import requests, datetime, pytz | |
| class AssetStoreException (Exception): | |
| pass | |
| class AssetStoreClient(object): | |
| LOGIN_URL = 'https://publisher.assetstore.unity3d.com/login' | |
| LOGOUT_URL = 'https://publisher.assetstore.unity3d.com/logout' | |
| SALES_URL = 'https://publisher.assetstore.unity3d.com/sales.html' | |
| USER_OVERVIEW_JSON_URL = 'https://publisher.assetstore.unity3d.com/api/user/overview.json' |
| # Pythonista Markdown Editor | |
| # By: EJM Software ---- http://ejm.cloudvent.net | |
| # Source: http://gist.github.com/02df085647247a815eff | |
| # ***************************************** | |
| import ui, console, editor, markdown, webbrowser, urllib | |
| @ui.in_background | |
| def new_md(sender): | |
| filename = console.input_alert('', 'File Name') | |
| if filename.find('.')>-1: |