first: sudo apt-get install aptitude install: sudo aptitude install --add-user-tag xfce xubuntu-desktop remove: sudo aptitude purge --remove-user-tag xfce '?user-tag(xfce)'
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
| ATTRS{idProduct}=="0925", ATTRS{idVendor}=="3881", MODE="666", GROUP="plugdev" |
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
| ftdiprog.name=FT232R Fast BitBang Programmer | |
| ftdiprog.protocol=2ftbb | |
| ftdislow.name=FT232R Low Baud Programmer | |
| ftdislow.protocol=2ftbb | |
| ftdislow.speed=4800 |
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
| ############################################################## | |
| atmega8_pb2.name=Pinboard2 ATmega8 | |
| atmega8_pb2.upload.protocol=2ftbb | |
| atmega8_pb2.upload.maximum_size=7168 | |
| atmega8_pb2.upload.speed=19200 | |
| atmega8_pb2.bootloader.low_fuses=0xdf | |
| atmega8_pb2.bootloader.high_fuses=0xca |
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
| /* | |
| I recently got one of those 8x8 LED matrices and I was playing with some Game of Life patterns when I found this pretty repeating pattern. I found it by starting with some random patterns. If you look closely you can see the pattern becoming a mirrored version of itself halfway through. Apparently the pattern doesn't repeat like this on an infinite grid but on this wrapping 8x8 grid it does ;-) | |
| FYI, the LED matrix is a bicolor one (green/red) and has an I2C interface (http://www.adafruit.com/products/902). I'm using the colors as follows: | |
| - newly created cells are green | |
| - cells that are at least 10 generations old are red | |
| - other living cells are yellow (simultaneously green+red) | |
| It's hookup up to my Arduino Uno r3. |
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
| ATTRS{idProduct}=="6010", ATTRS{idVendor}=="0403", MODE="666", GROUP="plugdev" |
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
| #FTDI_Bitbang | |
| programmer | |
| id = "2ftbb"; | |
| desc = "FT232R Synchronous BitBang"; | |
| type = ft245r; | |
| miso = 5; # DCD | |
| sck = 6; # DSR | |
| mosi = 4; # CTS | |
| reset = 7; # RI | |
| ; |
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
| #FTDI_Bitbang | |
| programmer | |
| id = "2ftbb"; | |
| desc = "FT232R Synchronous BitBang"; | |
| type = "avrftdi"; | |
| miso = 5; # DCD | |
| sck = 6; # DSR | |
| mosi = 4; # CTS | |
| reset = 7; # RI | |
| ; |
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
Show hidden characters
| { | |
| "cmd": ["make", "all"], | |
| "working_dir": "${project_path:${folder}}", | |
| "encoding": "cp1251", | |
| "selector": "source.c", | |
| "variants": [ | |
| { | |
| "cmd": ["make", "clean"], | |
| "name": "Clean" | |
| }, |
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
| # Hey Emacs, this is a -*- makefile -*- | |
| # | |
| # WinAVR makefile written by Eric B. Weddington, Jörg Wunsch, et al. | |
| # Released to the Public Domain | |
| # Please read the make user manual! | |
| # | |
| # Additional material for this makefile was submitted by: | |
| # Tim Henigan | |
| # Peter Fleury | |
| # Reiner Patommel |
NewerOlder