- Download MiniBian
- extract MiniBian .img
- insert SD Card
- use
disk utilityto format the card with fat32 - check from terminal (OSX) which disk the SD Card is using
diskutil list - unount SD Card:
diskutil unmountDisk /dev/diskXwhere X is what you found out last step - copy image to SD Card:
sudo dd bs=1m if=<path to the .img file> of=/dev/rdiskX - wait until
ddis finished
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 change_sidebar_pos() { | |
| $args = array ( | |
| 'post_type' => 'product', | |
| 'post_per_page' => -1 | |
| ); | |
| query_posts( $args ); | |
| while ( have_posts() ) : the_post(); |
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
| { | |
| ".123" : "application/vnd.lotus-1-2-3", | |
| ".3dml" : "text/vnd.in3d.3dml", | |
| ".3g2" : "video/3gpp2", | |
| ".3gp" : "video/3gpp", | |
| ".a" : "application/octet-stream", | |
| ".aab" : "application/x-authorware-bin", | |
| ".aac" : "audio/x-aac", | |
| ".aam" : "application/x-authorware-map", | |
| ".aas" : "application/x-authorware-seg", |