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
def fizz n | |
eval 'return'[0..(n*6)-(101*6)-1] | |
s = [["Fizz"][n%3], ["Buzz"][n%5]].join | |
puts (s + n.to_s)[0..(s.length - 1)] | |
fizz n + 1 | |
end | |
fizz 1 |
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
{ | |
"id": 1, | |
"title": "foo", | |
"reviewers": | |
[ | |
{ | |
"id":1, | |
"email":"[email protected]" | |
}, | |
{ |
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
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) | |
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) | |
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) | |
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) | |
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) |
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
# passenger-install-nginx-module | |
Welcome to the Phusion Passenger Nginx module installer, v3.0.15. | |
This installer will guide you through the entire installation process. It | |
shouldn't take more than 5 minutes in total. | |
Here's what you can expect from the installation process: | |
1. This installer will compile and install Nginx with Passenger support. | |
2. You'll learn how to configure Passenger in Nginx. |
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
/etc grep '^lib/' /var/lib/pacman/local/*/files | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/ | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/ld-2.16.so | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/ld-linux-x86-64.so.2 | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/libBrokenLocale-2.16.so | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/libBrokenLocale.so.1 | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/libSegFault.so | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/libanl-2.16.so | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/libanl.so.1 | |
/var/lib/pacman/local/glibc-2.16.0-1/files:lib/libc-2.16.so |
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
cat .log | |
!SESSION 2012-05-29 11:38:41.331 ----------------------------------------------- | |
eclipse.buildId=M20120208-0800 | |
java.version=1.6.0_24 | |
java.vendor=Sun Microsystems Inc. | |
BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=en_US | |
Command-line arguments: -os linux -ws gtk -arch x86_64 | |
!ENTRY org.eclipse.jface 2 0 2012-05-29 11:38:49.911 | |
!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. |
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
{"connected":true,"data":{"success":true}}<!-- start log messages --> | |
<table class="yiiLog" width="100%" cellpadding="2" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;"> | |
<tr> | |
<th style="background:black;color:white;" colspan="5"> | |
Application Log | |
</th> | |
</tr> | |
<tr style="background-color: #ccc;"> | |
<th style="width:120px">Timestamp</th> | |
<th>Level</th> |
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
rack-alive (master) bundle install ruby-1.9.3@test | |
Fetching gem metadata from http://rubygems.org/........ | |
Using rake (0.9.2.2) | |
Using bundler (1.1.0) | |
Installing ffi (1.0.11) with native extensions Unfortunately, a fatal error has occurred. Please report this error to the Bundler issue tracker at https://github.com/carlhuda/bundler/issues so that we can fix it. Thanks! | |
/home/per/.rvm/rubies/ruby-1.9.3-head/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:552:in `rescue in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError) | |
/home/per/.rvm/rubies/ruby-1.9.3-head/bin/ruby extconf.rb | |
checking for ffi_call() in -lffi... yes | |
checking for ffi_prep_closure()... yes |
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
/home/per/.rvm/rubies/ruby-1.9.3-head/bin/ruby extconf.rb | |
creating Makefile | |
make | |
compiling generator.c | |
generator.c: In function ‘cState_aref’: | |
generator.c:632:5: warning: variable ‘state’ set but not used [-Wunused-but-set-variable] | |
generator.c: In function ‘isArrayOrObject’: | |
generator.c:867:5: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses] | |
generator.c:863:10: warning: unused variable ‘c’ [-Wunused-variable] |
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
<html> | |
<head> | |
<title>XxX_DinMamma_XxX</title> | |
<style> | |
* { | |
padding: 0; | |
margin: 0; | |
} | |
</head> |
NewerOlder