-
Linux in 100 Seconds (this one is just a fun short video to get you excited)
-
Linux File System Explanation ( also MacOS )
-
Linux File Permissions ( also MacOS )
-
60 Linux Commands you NEED to know (in 10 minutes)
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
### TBD |
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
<?php | |
// Define the base URL | |
define('__BASE_URL__', 'http://192.168.0.100/retroarch/'); | |
// Initialize a counter and create an object to hold the data | |
$count = 0; | |
$data = new stdClass(); | |
$data->files = []; |
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
-(instancetype)init { | |
NSLog(@"Init form WebServer"); | |
if ( self = [super init] ) { | |
#if TARGET_OS_IOS | |
NSString* docsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]; | |
#elif TARGET_OS_TV | |
// BEGIN HACK | |
NSString* docsPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject]; |
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
<style> | |
.win { | |
color: #00cf00; | |
} | |
.loose { | |
color: #cf0000; | |
} |
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
$('.btn-landscape').click(function(){ | |
if( $(this).find('i').hasClass('fa-check') ){ $(this).find('i').removeClass('fa-check'); } else { $(this).find('i').addClass('fa-check'); } | |
$.ajax({url:'/w/images/wimages/landscape/?oimage_id='+$(this).attr('data-oimage-id')}); | |
}); |