Skip to content

Instantly share code, notes, and snippets.

View jukben's full-sized avatar
:shipit:
Shipping it

Jakub Beneš jukben

:shipit:
Shipping it
View GitHub Profile
@jukben
jukben / Fastlane
Created March 29, 2018 12:30
Fastlane – example how to increment versions based on package.json
# ios
match(...)
package = load_json(json_path: "../package.json")
increment_version_number(version_number: package["version"])
increment_build_number(build_number: ENV["CIRCLE_BUILD_NUM"] || 1)
# android
package = load_json(json_path: "../package.json")
@jukben
jukben / config
Last active April 8, 2019 16:18
Example config for GBCK
{
"url": "[email protected]:jukben/dotfiles.git",
"readme": "README.md",
"entities": [
{
"i": "~/.config/fish",
"o": ".config/fish",
"options": {
"noSymlinks": true
}
@jukben
jukben / android_Fastlane
Last active October 28, 2021 10:51
Example of Circle CI config for React Native CI (Appcenter, Kotlin, Swift, RN 0.49+, Haul packager, signing via Match, be sure that you have set env MATCH_PASSWORD, FASTLANE_PASSWORD and SLACK_URL)
fastlane_version "2.64.1"
default_platform :android
platform :android do
lane :beta do
gradle(task: "assembleRelease")
appcenter_upload(
api_token: "",
@jukben
jukben / React-Native-First-Aid-Manual.md
Last active November 15, 2017 18:07
Your React Native project got broken? Try this check list.

Have your React Native project got broken?

  1. Restart XCode
  2. Reinstall Pods cd ios/ && pod install
  3. rm -fr node_modules && yarn
  4. Restart Mac
  5. Remove the whole project and clone it again
  6. Make step (or two) back. git reset @^^
@jukben
jukben / mock-chalk.js
Last active November 8, 2017 23:53
We had to mock Chalk for CI – Proxy FTW
/**
* Chalk mock for CI
*
* chalk.whatever.color.red("text") => "text"
* chalk.i.have.to.go.sleep("NOW!)" => "NOW!"
*/
module.exports = new Proxy(
{},
{
@jukben
jukben / fib.js
Last active June 5, 2017 14:45
Fib
// using iteration
const fib = (number) => {
const results = [0, 1]
for (let i = 0; i <= number - 2; i++){
results[i+2] = results[i+1] + results[i];
}
return results[number];
}
@jukben
jukben / styledElement.js
Last active June 5, 2017 14:10
StyledElement 🎨 – new minimalistic & powerful CSS in JS solution 😂
/*
styledElement - new minimalistic & powerful CSS in JS solution
Example of usage:
const div = styledElement("div", {background: red})
*/
export function styledElement(elem = "div", rules = {}, options = {}) {
const element = document.createElement(elem)