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
| git checkout rpi-3.2.27 | |
| git pull upstream rpi-3.2.27 | |
| git checkout rpi-3.2.27-qemu | |
| git rebase |
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
| cat /etc/vconsole.conf | |
| ---------------------------------------------------------------- | |
| KEYMAP=jp106 | |
| FONT=lat9w-16 | |
| FONT_MAP=8859-1_to_uni | |
| ---------------------------------------------------------------- | |
| pacman -S netcfg | |
| pacman -S wireless_tools |
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
| -M versatilepb -cpu arm1136-r2 -m 256 -localtime -k ja | |
| root=/dev/sda2 console=ttyAMA0 | |
| mount -o rw,remount /dev/root | |
| /etc/fstab | |
| /dev/sda1 /boot vfat defaults 0 0 | |
| /dev/sda2 / ext4 defaults 0 0 |
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
| ffmpeg -debug 9 -f v4l2 -s 320x240 -pix_fmt yuyv422 -i /dev/video0 output.avi |
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
| [Service] | |
| ExecStart=/usr/bin/bash --login -c "/opt/google/chrome-remote-desktop/chrome-remote-desktop -f -s 1600x1200 --start" | |
| Restart=always | |
| WorkingDirectory=/home/chattama/ | |
| User=chattama | |
| Group=chrome-remote-desktop | |
| [Install] | |
| WantedBy=multi-user.target |
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
| A = class | |
| h1: {} | |
| h2: null | |
| constructor: ()-> @h2={} | |
| a1 = new A() | |
| a2 = new A() | |
| console.log a1.h1 == a2.h1 | |
| console.log a1.h2 == a2.h2 |
OlderNewer