The only cross-platform browser that fits in a Gist!
One line install. Works on Linux, MacOSX and Windows.
$> npm install http://gist.github.com/morganrallen/f07f59802884bcdcad4a/download
| I was drawn to programming, science, technology and science fiction | |
| ever since I was a little kid. I can't say it's because I wanted to | |
| make the world a better place. Not really. I was simply drawn to it | |
| because I was drawn to it. Writing programs was fun. Figuring out how | |
| nature works was fascinating. Science fiction felt like a grand | |
| adventure. | |
| Then I started a software company and poured every ounce of energy | |
| into it. It failed. That hurt, but that part is ok. I made a lot of | |
| mistakes and learned from them. This experience made me much, much |
| from Crypto.Cipher.AES import AESCipher, MODE_ECB, MODE_CBC | |
| file = open("flatcube/flatcube-1-layer.3w", 'rb') | |
| string = file.read() | |
| enc_gcode = string[0x2000:] | |
| aes = AESCipher("@xyzprinting.com@xyzprinting.com", mode=MODE_ECB, IV=chr(0)*16) | |
| gcode = aes.decrypt(enc_gcode) | |
| print gcode |
| Notes D | |
| "===================================== Types:" | |
| auto a = 12; | |
| // Same as c++11 auto | |
| <type>.stringof | |
| // Name of the type |
| # Built application files | |
| /*/build/ | |
| # Crashlytics configuations | |
| com_crashlytics_export_strings.xml | |
| # Local configuration file (sdk path, etc) | |
| local.properties | |
| # Gradle generated files |
| # Add the following 'help' target to your Makefile | |
| # And add help text after each target name starting with '\#\#' | |
| help: ## Show this help. | |
| @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | |
| # Everything below is an example | |
| target00: ## This message will show up when typing 'make help' | |
| @echo does nothing |
| FPGA : | |
| Mojo v3 (Embeded Micro) | |
| Linux embarqué: | |
| Beaglebone Black | |
| (5v, 210-460mA) | |
| FPGA+Microproc: | |
| http://www.armadeus.com/francais/produits-cartes_microprocesseur-apf27.html |
| Projet STM32 F4 Disc en C++11 : http://forums.openpilot.org/topic/19613-stm32f4-antenna-tracker/ | |
| Pinout : http://kornak.ca/parts/stm32-discovery-f4/Kornak-(STM32-Discovery-F4)-0001%20Rev%201.00%20Module%20Pinouts%20&%20Functions.xls | |
| Contrôle bus SPI pour RF : http://eliaselectronics.com/stm32f4-tutorials/stm32f4-spi-tutorial/ | |
| Installation toolchain & build des libs : http://sigalrm.blogspot.fr/2012/09/stm32f4-discovery-quick-start-guide.html | |
| Tuto stm32 : http://jeremyherbert.net/get/stm32f4_getting_started |