Skip to content

Instantly share code, notes, and snippets.

View KrauseFx's full-sized avatar
🚀
shipping

Felix Krause KrauseFx

🚀
shipping
View GitHub Profile
# as this is used in the fastlane code base a lot, and lots of people ask about it
# .length method
"my string".length # => 9
"".length # => 0
nil.length # NoMethodError: undefined method `length' for nil:NilClass
# .to_s method
"my string".to_s # => "my string"
"".to_s # => ""
/* GitHub query to get the number of comments, PR, releases, etc. for a given GH org */
WITH
ProjectData AS (SELECT * FROM `githubarchive.day.2017*` WHERE repo.name LIKE 'fastlane/%'),
Actors AS (SELECT DISTINCT(actor.login) AS login FROM ProjectData)
SELECT * FROM (
SELECT
actors.login,
(SELECT COUNT(*) FROM ProjectData WHERE type = 'IssueCommentEvent' AND actor.login = actors.login) AS Comments,

Keybase proof

I hereby claim:

  • I am krausefx on github.
  • I am krausefx (https://keybase.io/krausefx) on keybase.
  • I have a public key ASApsSjQg6pM7NRbBrRXXgkdjb8ICOyh6DQhL9Gh4E8ceQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am krausefx on github.
  • I am krausefx (https://keybase.io/krausefx) on keybase.
  • I have a public key ASC-hi_P4JRIckXO-HH7be2gSJCy0vEGTsj3d5M_tmWPyAo

To claim this, I am signing this object:

@KrauseFx
KrauseFx / orta_gifs.rb
Last active March 29, 2022 22:33
This gist opens all orta gifs in your browser
# taken from https://gist.github.com/orta/694004c20becead3ce1f
urls = %w[
https://ortastuff.s3.amazonaws.com/gifs/bike.gif
https://ortastuff.s3.amazonaws.com/gifs/bug-hunting.gif
https://ortastuff.s3.amazonaws.com/gifs/cheers-boxing.gif
https://ortastuff.s3.amazonaws.com/gifs/clap-2.gif
https://ortastuff.s3.amazonaws.com/gifs/clap.gif
https://ortastuff.s3.amazonaws.com/gifs/danger.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-nah.gif
https://ortastuff.s3.amazonaws.com/gifs/delisa-one-thumb.gif
@KrauseFx
KrauseFx / uitesting.sh
Created June 18, 2015 07:16
Run UI Tests from the command line
xcodebuild -workspace App.xcworkspace \
-scheme "SchemeName" \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0'
test