- Zestaw osobisty
- Przyrzad + HMS
- 2 HMS
- Krotki rep
- Dlugi rep
- Ekspresy
- Tyle co wpinek + 1 do wpiecia sie w stanowisko + 1 do przewiazania + 1 zapasowy
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
------------------------------------------------------------------------------ | |
Screenshot | |
------------------------------------------------------------------------------ | |
HiWi/50 N= DV/PV: 87/50 H: 786/786 P: 1114/1114 ----b-----------0 DrCh | |
^^^ ^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^ ^^^^^^ | |
^^*^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^*^^^^^^^^^ ^^^^^^^^^^^^^^^^^..^ | |
^^^===""""~~~^^^^ ^^*^^^&&&&&&&~~~~~~~~~~~~^*^^= =^^*^^^^^^^^^^^*.@^^ | |
^^===="""~~~~~~o^^ ^^^&&&&&&o&&&&&&&~~~~~~~&&&=== ="""""""&&^~^^*^.^^ | |
^^^"""""~~~^^^^^^^^ ^^^^^^^^&&&&&&&&&&&&&&&&&&&&&& """"""&&~~~^....^ |
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
defmodule Bench do | |
def bench do | |
:timer.tc(fn -> Enum.reduce(Range.new(0, 10000000), 0, &Kernel.+/2) end) |> IO.inspect | |
:timer.tc(fn -> Enum.reduce(Range.new(0, 10000000), 0, fn acc, n -> acc + n end) end) |> IO.inspect | |
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
------------------------------------------------------------------------------ | |
Screenshot | |
------------------------------------------------------------------------------ | |
DwMo/36 L+ DV/PV: 82/48 H: 640/640 P: 330/330 ----b-----------0 DrCh | |
^^^ ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^ ^^^^^^ | |
^^*^^^^^^^^^^ ^^^^^^^^^^^*^^^^^^^^^^^^^^^^^ ^^^^^^^^ ^ ^^^@.^ | |
^^^^===""""~~~^^^^ ^^*^^^&&&&&&&~~~~~~~~~~~~^*^^== ^^*^^^^^^^^^^^*..^^ | |
^^^^===="""~~~~~~o^^ ^^^&&&&&&o&&&&&&&~~~~~~~&&&===== """""""&&^~^^*^.^^ | |
^^^^"""""~~~^^^^^^^^ ^^^^^^^^&&&&&&&&&&&&&&&&&&&&&&== """""""""&&~~~^....^ |
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
Post links to your game repositories as comments |
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
Post links to your game repositories as comments |
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
#!/bin/bash | |
# Requirements: | |
# - node.js (brew install node || open http://nodejs.org/dist/v0.6.18/node-v0.6.18.pkg) | |
# - jslint (brew install jslint) | |
# - coffeelint (npm install -g coffeelint) | |
# - csslint (npm install -g csslint) | |
# - reek (gem install reek) | |
for file in `git status -s | awk '{ print $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
def self.routes | |
Raptor.routes(self) do | |
index :responder => JSONResponder | |
end | |
end | |
class JSONResponder | |
def initialize(resource, action, params) | |
@resource = resource | |
@action = action |