- Install a base server with open ssh server enabled.
- Update the OS.
sudo apt-get update
sudo apt-get upgrade
- Install developement tools.
typedef NS_ENUM(NSUInteger, MyType) | |
{ | |
MyType_XXX, | |
MyType_YYY, | |
MyType_ZZZ | |
}; |
sudo apt-get update
sudo apt-get upgrade
a ver el timestamp... |
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView | |
{ | |
// Return the number of sections. | |
return 1; | |
} | |
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section { | |
//This is just for avoiding separation lines in empty rows (needs "numberOfSectionsInTableView") | |
if ([self numberOfSectionsInTableView:tableView] == (section+1)){ | |
return [UIView new]; |
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string | |
{ | |
NSString *newSearch = [textField.text stringByReplacingCharactersInRange:range withString:string]; | |
NSLog(@"%@",newSearch); | |
if ([newSearch length] >= MIN_NUMBER_OF_CHARACTERS_TO_LAUCH_SEARCH) | |
{ | |
//Hacer búsqueda con newSearch | |
} | |
#import <Foundation/Foundation.h> | |
#import "DDXMLNode.h" | |
@interface DDXMLNode (CDATA) | |
/** | |
Creates a new XML element with an inner CDATA block | |
<name><![CDATA[string]]></name> | |
*/ | |
+ (id)cdataElementWithName:(NSString *)name stringValue:(NSString *)string; |
this scripts installs: Flash, PDF, for some Chromium OS builds. (confirmed on Vanilla build 3389 Built on 12th December 2012!) Carputers confirmed that it also works on ArnoldTheBat's Cx86OS-20130423010101 build!
Sadly enough the Hangouts stopped working! i don't know about Netflix, since i can't test it. and since ~4-08-2013 MP3/Mp4 stopped working?
if you want to use this script on ArnoldTheBat's Chromium OS build, keep in mind that he uses the password: "password" instead of "facepunch". (without the quotes ;))
static inline double radians (double degrees) {return degrees * M_PI/180;} |