ruby books:
- pickaxe - programming ruby
- ruby way
- metaprogramming ruby
rails books:
- rails tutorial
- agile web development with rails 4
- rails 4 way
func someFunction() { | |
// drops last call because it's the current function call | |
if let sym = NSThread.callStackSymbols().dropFirst().first { | |
print(sym) | |
} | |
} |
MSI GTX970 GAMING 4G GDDR5 4GB 256Bit Nvidia GeForce DX12 Ekran Kartı | |
1.431,35 | |
http://www.vatanbilgisayar.com/msi-gtx970-gaming-4g-gddr5-4gb-256bit-nvidia-geforce-dx12-ekran-karti.html | |
Intel Core i5 6400 Soket 1151 2.7GHz 6MB Önbellek 14nm İşlemci | |
679,80 | |
http://www.vatanbilgisayar.com/intel-core-i5-6400-soket-1151-27ghz-6mb-onbellek-14nm-islemci.html | |
OCZ 240GB TRION 100 Serisi Sata 3.0 SSD (550MB Okuma / 520MB Yazma) | |
249,00 |
import UIKit | |
import WebKit | |
class ViewController: UIViewController, WKNavigationDelegate { | |
let webView = WKWebView(frame: CGRectMake(0, 0, 1024, 720)) | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
webView.navigationDelegate = self |
ruby books:
rails books:
import subprocess | |
from datetime import datetime | |
process = subprocess.Popen([ | |
"git", | |
"log", | |
"--after", "1 week ago", | |
"--author", "eralpkaraduman", | |
"--format=%cd%n%s%n", | |
"--reverse", |
// customize theme -> edit html | |
// paste below in head | |
<!-- Unity3D --> | |
<script type="text/javascript"> | |
<!-- | |
var unityObjectUrl = "http://webplayer.unity3d.com/download_webplayer-3.x/3.0/uo/UnityObject2.js"; | |
if (document.location.protocol == 'https:') | |
unityObjectUrl = unityObjectUrl.replace("http://", "https://ssl-"); | |
document.write('<script type="text/javascript" src="' + unityObjectUrl + '"></script>'); |
LWin::Control | |
Control::LWin | |
!u::ü | |
!i::ı | |
!c::ç | |
!g::ğ | |
!o::ö | |
!s::ş |
Köstebek Şarkısı: Gizli Ajan Reiji | |
14 Şubat 2014, 23:59 | |
Cinemaximum Fitaş Salon 1 | |
Ucuz Heyecanlar | |
15 Şubat 2014, 23:59 | |
Cinemaximum Fitaş Salon 1 | |
Rüzgar Yükseliyor | |
21 Şubat 2014, 22:00 |
#!/bin/bash | |
START=4699 | |
END=4824 | |
VIDEO_PATH="/media/videoStorage/wowzaVideoFiles/cevaptv/" | |
EXT="_240p.mp4" | |
rm seconds.log | |
for((i=$START; i<=$END; i++)) |
var AWS = require('aws-sdk'); | |
AWS.config.loadFromPath('config.json'); | |
var route53 = new AWS.Route53(); | |
var net = require('net'); | |
var os = require('os'); | |
var zone = "YOUR_ZONE_ID"; | |
var domain = "yourdoma.in"; |