This file contains hidden or 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
Running Time Self (ms) Symbol Name | |
11317.0ms 100.0% 0,0 Main Thread 0x3b006 | |
11315.0ms 99.9% 0,0 main | |
11315.0ms 99.9% 0,0 std::rt::lang_start::hfe9ab243c60ffb9b | |
11315.0ms 99.9% 0,0 __rust_maybe_catch_panic | |
11315.0ms 99.9% 0,0 std::panicking::try::call::he2cac0ad48ff25a4 | |
11288.0ms 99.7% 823,0 croaring::main | |
6195.0ms 54.7% 76,0 drop::h44c2789700c5801d | |
6119.0ms 54.0% 166,0 drop::hb4effd736c0d4623 | |
5233.0ms 46.2% 662,0 {{inlined-root}}::drop<roaring::container::Container<u16>> |
This file contains hidden or 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
Running Time Self (ms) Symbol Name | |
12922.0ms 100.0% 0,0 Main Thread 0x39200 | |
12921.0ms 99.9% 0,0 start | |
12921.0ms 99.9% 0,0 std::rt::lang_start::hfe9ab243c60ffb9b | |
12921.0ms 99.9% 0,0 __rust_maybe_catch_panic | |
12921.0ms 99.9% 0,0 std::panicking::try::call::he2cac0ad48ff25a4 | |
12833.0ms 99.3% 37,0 croaring::main | |
5729.0ms 44.3% 133,0 croaring::Bitmap::create::h8772886cb9e75384 | |
5561.0ms 43.0% 232,0 roaring_bitmap_create | |
4403.0ms 34.0% 368,0 ra_create_with_capacity |
This file contains hidden or 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
Running Time Self (ms) Symbol Name | |
54654.0ms 100.0% 0,0 Main Thread 0x3838b | |
54653.0ms 99.9% 0,0 start | |
54653.0ms 99.9% 0,0 std::rt::lang_start::hfe9ab243c60ffb9b | |
54653.0ms 99.9% 0,0 __rust_maybe_catch_panic | |
54653.0ms 99.9% 0,0 std::panicking::try::call::he2cac0ad48ff25a4 | |
54478.0ms 99.6% 68,0 croaring::main | |
24541.0ms 44.9% 175,0 croaring::Bitmap::create::h8772886cb9e75384 | |
24351.0ms 44.5% 219,0 roaring_bitmap_create | |
20825.0ms 38.1% 444,0 ra_create_with_capacity |
This file contains hidden or 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
Running Time Self (ms) Symbol Name | |
56563.0ms 100.0% 0,0 Main Thread 0x34c9c | |
56561.0ms 99.9% 0,0 start | |
56364.0ms 99.6% 67,0 main | |
24934.0ms 44.0% 220,0 roaring_bitmap_create | |
21366.0ms 37.7% 375,0 ra_create_with_capacity | |
20977.0ms 37.0% 1012,0 malloc | |
14.0ms 0.0% 0,0 <Unknown Address> | |
3258.0ms 5.7% 233,0 malloc | |
69.0ms 0.1% 69,0 DYLD-STUB$$malloc |
This file contains hidden or 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
require "formula" | |
class Hiptext < Formula | |
homepage "https://github.com/jart/hiptext" | |
head "https://github.com/jart/hiptext.git", :branch => "master" | |
depends_on "pkg-config" => :build | |
depends_on "ragel" => :build | |
depends_on :libpng | |
depends_on "jpeg" |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am saulius on github. | |
* I am saulius (https://keybase.io/saulius) on keybase. | |
* I have a public key whose fingerprint is 45EA 1938 161F D25B D683 68C4 C4C1 86B8 EE08 B182 | |
To claim this, I am signing this object: |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am saulius on github. | |
* I am saulius (https://keybase.io/saulius) on keybase. | |
* I have a public key whose fingerprint is 5213 ACF9 3DF5 36E0 8F59 0C04 F7AD 0700 6E55 4332 | |
To claim this, I am signing this object: |
This file contains hidden or 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 | |
fail_words=("debugger" "console.log" "puts" "binding.pry" "focus: true" ":focus") | |
for fail_word in "${fail_words[@]}" | |
do | |
grep -q "$fail_word" <(git diff --cached) && echo "Fail word found: '$fail_word'" && exit 1 | |
done | |
exit 0 |
This file contains hidden or 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 User | |
def initialize(attributes = {}) | |
@username, @password = attributes.values_at(:username, :password) | |
end | |
end |
This file contains hidden or 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 valid?(*gws) | |
gws.flatten.inject(true){ |result, gateway| gateway.valid? && result } | |
end |
NewerOlder