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
set :application, 'SBRFRoadshow' | |
set :scm, :git | |
set :repository, '[email protected]:/etc/git/customizer.git' | |
set :deploy_to, "/var/app/#{application}" | |
set :user, 'User' | |
set :use_sudo, false | |
set :normalize_asset_timestamps, false | |
server '192.168.0.10', :app, :web, :db, :primary => true | |
set :platform, "windows64" |
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
// http://rezerv.moszags.ru/slots/22987 | |
// http://rezerv.moszags.ru/slots/22988 | |
// http://rezerv.moszags.ru/slots/22989 | |
$("#slot_applicant_attributes_surname1").val("Сидоров"); | |
$("#slot_applicant_attributes_name1").val("Олег"); | |
$("#slot_applicant_attributes_middle_name1").val("Сергеевич"); | |
$("#slot_applicant_attributes_born_s1").val("25.07.1986"); | |
$( "#slot_applicant_attributes_surname2" ).val("Чупрова"); | |
$( "#slot_applicant_attributes_name2" ).val("Ирина"); |
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
fs = require 'fs' | |
{exec} = require 'child_process' | |
util = require 'util' | |
growl = require 'growl' | |
appFiles = [ | |
] | |
exclude = /chanto/ |
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
set guifont=Monaco:h14 | |
"set bg=dark | |
set ts=2 | |
set sw=2 | |
set sts=2 | |
set expandtab | |
set nu nu | |
set syntax=on | |
highlight clear | |
syntax reset |
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 ruby | |
require "trollop" | |
require "active_support/inflector" | |
class AppBuilder | |
class << self | |
def file_template( opts = {} ) | |
<<-eos | |
#{"import processing.opengl.*;" if opts[:mode]=="opengl"} |
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
withEllipseMode( CENTER, new Runnable() { public void run() { | |
withTranslate( SHADOW_DISPOSE_X, SHADOW_DISPOSE_Y, new Runnable() { public void run() { | |
withRotate( -PI / 2, new Runnable() { public void run() { | |
withRotate( 2 * PI * hours / 12, new Runnable() { public void run() { | |
rect( round( ( CLOCK_HOUR_ARROW_LENGTH ) / 2 * scale_factor ), 0, | |
round( ( CLOCK_HOUR_ARROW_LENGTH + CLOCK_HOUR_ARROW_WIDTH ) * scale_factor ), round( CLOCK_HOUR_ARROW_WIDTH * scale_factor ), round( CLOCK_HOUR_ARROW_WIDTH * scale_factor / 2 ) ); | |
} } ); | |
withRotate( 2 * PI * minutes / 60, new Runnable() { public void run() { | |
rect( round( ( CLOCK_MINUTE_ARROW_LENGTH ) / 2 * scale_factor ), 0, | |
round( ( CLOCK_MINUTE_ARROW_LENGTH + CLOCK_MINUTE_ARROW_WIDTH ) * scale_factor ), round( CLOCK_MINUTE_ARROW_WIDTH * scale_factor ), round( CLOCK_MINUTE_ARROW_WIDTH * scale_factor / 2 ) ); |
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
public void withTranslate( float tx, float ty, Runnable scope_runner ) { | |
pushMatrix(); | |
translate( tx, ty ); | |
scope_runner.run(); | |
popMatrix(); | |
} | |
public void withTranslate( float tx, float ty, float tz, Runnable scope_runner ) { | |
pushMatrix(); | |
translate( tx, ty, tz ); |
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
class A | |
attr_accessor :b | |
def with_b( new_b, &blk ) | |
original_b = b | |
self.b = new_b | |
yield if block_given? | |
self.b = original_b | |
end | |
end |
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
server { | |
listen 80; | |
server_name ~.*$; | |
charset utf8; | |
location / { | |
root /Users/4pcbr/workspace/dart; | |
expires 0; | |
index index.html index.htm; | |
} |
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
Integer a = "asdf"; | |
print( a is Integer ); | |
a += 1; | |
print( a is Integer ); | |
print( a / 10 ); // NoSuchMethodException |