Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
+ (NSString *) platform; |
<!-- http://www.jonathantneal.com/blog/understand-the-favicon/ --> | |
<link rel="apple-touch-icon" href="path/to/touchicon.png"> | |
<link rel="icon" href="path/to/favicon.png"> | |
<!--[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]--> | |
<!-- or, set /favicon.ico for IE10 win --> | |
<meta name="msapplication-TileColor" content="#D83434"> | |
<meta name="msapplication-TileImage" content="path/to/tileicon.png"> |
######################### | |
# .gitignore file for Xcode4 / OS X Source projects | |
# | |
# Version 2.0 | |
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
# | |
# 2013 updates: | |
# - fixed the broken "save personal Schemes" | |
# | |
# NB: if you are storing "built" products, this WILL NOT WORK, |
Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
#!/usr/bin/env bash | |
# Loop through each colour and print to the Terminal | |
for i in {0..255} ; do | |
printf "\x1b[38;5;${i}mcolour${i}\n" | |
done |
MODEL_DIR="ProjectName/Models" | |
MODEL_NAME="DataModel.xcdatamodeld" | |
PATH_TO_MODELD="${MODEL_DIR}/${MODEL_NAME}" | |
MACHINE_DIR="Machine" | |
HUMAN_DIR="Classes" | |
type mogenerator >/dev/null 2>&1 || { | |
echo >&2 "warning: mogenerator not found. You will need it when changing core data model"; | |
exit 0; | |
} |
// | |
// FolderViewController.m | |
// upnpxdemo | |
// | |
// Created by Bruno Keymolen on 02/07/11. | |
// Copyright 2011 Bruno Keymolen. All rights reserved. | |
// | |
#import "FolderViewController.h" |
// | |
// FolderViewController.m | |
// upnpxdemo | |
// | |
// Created by Bruno Keymolen on 02/07/11. | |
// Copyright 2011 Bruno Keymolen. All rights reserved. | |
// | |
#import "FolderViewController.h" |
#!/bin/bash | |
# Install tcpdump on a Tomato firmware router | |
cd /tmp && wget http://www.dslreports.com/r0/download/1376456~0df06f4164393e0fdd2aa2eede183328/tcpdump.zip && unzip tcpdump.zip && chmod +x tcpdump && rm tcpdump.zip |