[ Launch: D3LinePlot ] e0102a8511e1c98ac734911162d7a177 by nmsl1993[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
  
    
      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
    
  
  
    
  | <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <head> | |
| <title>The Garbage Zone</title> | |
| <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> | |
| <style> | |
| path { | |
| stroke: steelblue; | 
  
    
      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
    
  
  
    
  | NOTE: Commands starting with $ are executed at the linux command line (bash). | |
| Commands starting with > are executed within the gatttool cmd-line utility. | |
| Parentheticals are comments and should not actually be typed. | |
| $ sudo hcitool lescan | |
| $ sudo gatttoool -b C4:C3:00:01:07:C9 -I | |
| > connect | |
| > primary (this lists available services) | 
  
    
      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
    
  
  
    
  | # Makefile for STM32F7-Discovery-Blinky | |
| PROJECT = sublime_gdb_test | |
| ################ | |
| # Sources | |
| SOURCES_C = main.c | 
  
    
      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
    
  
  
    
  | function [H] = readAlist(filename) | |
| %readAlist.m by Noah Levy | |
| %A utility which read reads alist files as defined on | |
| %http://www.inference.phy.cam.ac.uk/mackay/codes/alist.html by Prof. David Mackay | |
| fid=fopen(filename); | |
| tline = fgetl(fid); | |
| %N is number of rows, M is number of cols | |
| %%%%%%%%%%%%%READ SIZE OF ALIST MATRIX%%%%%%%%%%%%% | |
| split_line = regexp(tline, '\d+','match'); | 
  
    
      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 | |
| import sys,pexpect,subprocess,urllib2,re,multiprocessing,argparse,types | |
| amdpool_servers =['amdpool-01','amdpool-02','amdpool-03','amdpool-04'] | |
| def getNameFromDirectoryPage(netID): | |
| req = urllib2.Request('https://www.cornell.edu/search/people.cfm?netid=' + netID + '&tab=people') | |
| response = urllib2.urlopen(req) | |
| the_page = response.read() | |
| name = re.search('<h3 class=\"cu-headline\" style=\"display: inline; margin-right: 1em;\">(.*)</h3>',the_page) | |
| if not name: | 
  
    
      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
    
  
  
    
  | Here's the process I used to get JCWren's LPC2148 FreeRtos code(http://jcwren.com/arm/packages/LPC2148_Demo_latest.tgz) to compile. | |
| $ make | |
| After that I got some error about "missing expression -- 'swi'" | |
| I then did | |
| $ grep -i -r "asm.*swi" . | |