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
# | |
# >> Generate awesome shellness with zsh ^_^ << | |
# | |
# @author toonevdb <[email protected]> | |
# | |
# | |
apt-get update | |
apt-get install -y zsh curl git locales gawk percol fzf | |
chsh -s "$(which zsh)" |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Outputs some information on CUDA-enabled devices on your computer, | |
including current memory usage. | |
It's a port of https://gist.github.com/f0k/0d6431e3faa60bffc788f8b4daa029b1 | |
from C to Python with ctypes, so it can run without compiling anything. Note | |
that this is a direct translation with no attempt to make the code Pythonic. |
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
// | |
// SimpleScrollingStack.swift | |
// A super-simple demo of a scrolling UIStackView in iOS 9 | |
// | |
// Created by Paul Hudson on 10/06/2015. | |
// Learn Swift at www.hackingwithswift.com | |
// @twostraws | |
// | |
import UIKit |
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
iOS Destek Çizelgesi | |
Kış 2012 Sürümü - v2.0 | |
iPhone Haziran 2007 | |
iPod touch Eylül 2007, Şubat 2008 (32GB only) | |
iPhone 3G Temmuz 2008 | |
iPod touch (2nd Nesil) Eylül 2008 Eylül 2009 - (8GB only) | |
iPhone 3GS Haziran 2009 | |
iPod touch (3rd Nesil) Eylül 2009 | |
iPad Nisan 2010 | |
iPhone 4 Haziran 2010 |
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
let camelCaseString = "noRealTimeLocationData" | |
let stringCharacters = String(camelCaseString).characters.map{ String($0) } | |
let titleCaseString = stringCharacters.flatMap{ $0.lowercaseString != $0 ? " " + $0 : $0 }.joinWithSeparator("") | |
print(titleCaseString) |