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
# HOW TO MOUNT AMIGA FFS MEDIA IN UBUNTU LINUX | |
# Linux comes with built-in support for Amiga FastFileSystem (AFFS). | |
# First we need to create a directory for mounting the partition. | |
sudo mkdir /media/AmigaMount | |
# Fire up fdisk to check the device name. | |
sudo fdisk -l | |
# My device is /dev/sdb. Using parted. |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDevelopmentRegion</key> | |
<string>en</string> | |
<key>CFBundleDocumentTypes</key> | |
<array> | |
<dict> | |
<key>CFBundleTypeExtensions</key> |
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
/* Dennis Ritchie (1941-2011) */ | |
#include <stdio.h> | |
int main() | |
{ | |
printf("goodbye, dad\n"); | |
return 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
// | |
// FileAttributes.m | |
// | |
// Coded by Stefan Vogt. | |
// Released under the FreeBSD license. | |
// http://www.byteproject.net | |
// | |
NSFileManager *fileManager = [[NSFileManager alloc] init]; | |
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
/* | |
* switchtemp.c | |
* | |
* Coded by Stefan Vogt, revised Feb 19, 2011. | |
* Released under the FreeBSD license. | |
* http://www.byteproject.net | |
* | |
* template for a switchable command line utility | |
* | |
*/ |
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
/* | |
* ptarget.h | |
* | |
* Coded by Stefan Vogt, revised Feb 18, 2011. | |
* Released under the FreeBSD license. | |
* http://www.byteproject.net | |
* | |
* header for compiler and OS detection | |
* | |
*/ |