This file contains 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
scala> def f(n:Int):Int = if (n<2) 1 else n*f(n-1) | |
f: (Int)Int | |
scala> f(5) | |
res2: Int = 120 |
This file contains 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
package service.search; | |
import java.io.Reader; | |
import org.apache.lucene.analysis.LowerCaseFilter; | |
import org.apache.lucene.analysis.LowerCaseTokenizer; | |
import org.apache.lucene.analysis.ReusableAnalyzerBase; | |
import org.apache.lucene.analysis.TokenStream; | |
import org.apache.lucene.analysis.Tokenizer; | |
import org.apache.lucene.analysis.WhitespaceTokenizer; |
This file contains 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
package controllers; | |
import models.User; | |
import play.Logger; | |
import play.Play; | |
import play.libs.Crypto; | |
import play.mvc.Before; | |
import play.mvc.Controller; | |
import play.mvc.Http; | |
import play.mvc.Scope; |
This file contains 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 sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
This file contains 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
3158 GOV.TR domain names | |
http://ahmetalpbalkan.com/blog/gov-tr-alan-adlari-listesi/ | |
================================== | |
100yilyy.gov.tr | |
19mayis.gov.tr | |
28kontrollab.gov.tr | |
360sakarya.gov.tr | |
80yilrehabilitasyon.gov.tr | |
9fi.gov.tr |
This file contains 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
# Counts source lines of code in current directory. Replace *.java with your source extension. | |
# (ignores empty lines) | |
find . -type f -name '*.java' -exec cat {} \; | sed '/^\s*$/d' | wc -l | |
# to ignore comments (in languages where comments start with #) | |
find . -type f -name '*.java' -exec cat {} \; | sed '/^\s*#/d;/^\s*$/d' | wc -l |
This file contains 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
var PAGE_LOAD_INTERVAL = 8000; | |
var TOTAL_PAGES = 30; | |
var VOTING_INTERVAL = 10*1000; | |
var k = 0; | |
var l = setInterval(function(){ | |
$('.pager_next_link').trigger('click'); | |
console.log('Loaded page ' + (++k)); | |
}, PAGE_LOAD_INTERVAL); |
This file contains 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
tr: | |
viewer: | |
comment_on_twitter: "Twitter'da Yorum Yaz" | |
older: 'Daha Eskiler' | |
newer: 'Daha Yeniler' | |
feed: 'Feed' | |
share: 'Paylaş' | |
next_post: 'Sonraki Yazı' | |
previous_post: 'Önceki Yazı' | |
no_posts: 'Henüz bir yazı yazılmamış.' |
This file contains 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
using System; | |
using System.Diagnostics; | |
using System.Threading.Tasks; | |
public class RetryLoop<TResult> | |
{ | |
public RetryLoop(Func<RetryIterationContext<TResult>, Task<TResult>> func, Func<RetryIterationContext<TResult>, bool> succeeded) | |
{ | |
this.func = func; | |
this.timer = new Stopwatch(); |
This file contains 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
root@e25213faeb41:/go/src/github.com/docker/docker# go test -v github.com/docker/docker/pkg/archive -run TestChangesDirsMutated | |
=== RUN TestChangesDirsMutated | |
--- PASS: TestChangesDirsMutated (0.11 seconds) | |
changes_test.go:208: Lstat(old): &{name:symlink2 size:7 mode:134218239 modTime:{sec:63551388019 nsec:33650046 loc:0x6f8f40} sys:0xc208048510} | |
changes_test.go:209: Lstat(new): &{name:symlink2 size:13 mode:134218239 modTime:{sec:63551388019 nsec:43652546 loc:0x6f8f40} sys:0xc208048630} | |
changes_test.go:210: sameFsTime=false, expected=false | |
changes_test.go:212: stat(old): &{Dev:34 Ino:171198 Nlink:1 Mode:41471 Uid:0 Gid:0 X__pad0:0 Rdev:0 Size:7 Blksize:4096 Blocks:0 Atim:{Sec:1415791219 Nsec:33650046} Mtim:{Sec:1415791219 Nsec:33650046} Ctim:{Sec:1415791219 Nsec:43652546} X__unused:[0 0 0]} | |
changes_test.go:213: stat(new): &{Dev:34 Ino:172134 Nlink:1 Mode:41471 Uid:0 Gid:0 X__pad0:0 Rdev:0 Size:13 Blksize:4096 Blocks:0 Atim:{Sec:1415791219 Nsec:43652546} Mtim:{Sec:1415791219 Nsec:43652546} Ctim:{Sec:14157 |
OlderNewer