I hereby claim:
- I am fjcaetano on github.
- I am fjcaetano (https://keybase.io/fjcaetano) on keybase.
- I have a public key ASBPByTOBjczHP-AUH3vIlMW7Lq2bslvhRAJTTU63iW6ego
To claim this, I am signing this object:
| #!/bin/sh | |
| # Raspberry Pi logo (green leaves, red body) | |
| printf '%b' "\ | |
| \e[32m⠀⢀⣠⣤⣶⣶⣶⣤⣄⠀⠀⣀⣤⣶⣶⣶⣤⣄⡀\e[0m | |
| \e[32m⠀⢸⣿⠁⠀⠀⠀⠀⠙⢷⡾⠋⠀⠀⠀⠀⠈⣿⡇⠀\e[0m | |
| \e[32m⠀⠘⢿⡆⠀⠀⠀⠢⣄⣼⣧⣠⠔⠀⠀⠀⢰⡿⠃⠀\e[0m | |
| \e[32m⠀⠀⠈⠻⣧⣤⣀⣤⣾⣿⣿⣷⣤⣀⣤⣼⠟⠁⠀⠀\e[0m | |
| \e[31m⠀⠀⣰⡾⠋⠉⣩⣟⠁⠀⠀⠈⣻⣍⠉⠙⢷⣆⠀⠀\e[0m | |
| \e[31m⠀⢀⣿⣀⣤⡾⠛⠛⠷⣶⣶⠾⠛⠛⢷⣤⣀⣿⡀⠀\e[0m |
| #!/bin/zsh | |
| printf '%b' "\ | |
| \033[32m 'c.\033[0m | |
| \033[32m .xNMM.\033[0m | |
| \033[32m .OMMMMo\033[0m | |
| \033[32m OMMM0,\033[0m | |
| \033[32m .;loddo:' loolloddol;.\033[0m |
| #! /bin/sh | |
| ARCHIVE_PATH="$1" | |
| OUTPUT_PATH="$2" | |
| if [ -z "${ARCHIVE_PATH}" ] || [ -z "${OUTPUT_PATH}" ]; then | |
| echo "Usage: $0 [archive_path] [output_path]" | |
| exit 1 | |
| fi | |
| TMP_PATH="/tmp/manual-archive" |
I hereby claim:
To claim this, I am signing this object:
| import React from 'react'; | |
| const withPure = <P extends any>( | |
| WrappedComponent: React.ComponentType<P>, | |
| ): React.ComponentClass<P> => { | |
| class Purified extends React.PureComponent<P> { | |
| render() { | |
| return <WrappedComponent {...this.props} />; | |
| } | |
| } |
| import Dispatch | |
| private var throttleWorkItems = [AnyHashable: DispatchWorkItem]() | |
| private var lastDebounceCallTimes = [AnyHashable: DispatchTime]() | |
| private let nilContext: AnyHashable = arc4random() | |
| public extension DispatchQueue { | |
| /** | |
| - parameters: | |
| - deadline: The timespan to delay a closure execution |
| module Fastlane | |
| module Actions | |
| module SharedValues | |
| IOS_SIMULATOR_CUSTOM_VALUE = :IOS_SIMULATOR_CUSTOM_VALUE | |
| end | |
| class IosSimulatorAction < Action | |
| @@already_booted_code = 164 | |
| def self.run(params) |
| module Fastlane | |
| module Actions | |
| class CodecovAction < Action | |
| def self.run(params) | |
| ci_only = params[:ci_only] | |
| cmd = ['curl -s https://codecov.io/bash | bash'] | |
| cmd << "-s --" if params.all_keys.inject(false) { |p, k| p or params[k] } | |
| cmd << "-X xcodeplist" if params[:use_xcodeplist] | |
| cmd << "-J '#{params[:project_name]}'" if params[:project_name] |
| // | |
| // ChallengeViewController.swift | |
| // WinninApp | |
| // | |
| // Created by Flávio Caetano on 9/26/16. | |
| // Copyright © 2016 Winnin. All rights reserved. | |
| // | |
| import UIKit | |
| import RxSwift |
| echo "Printing Changelog" | |
| git log $(git describe --abbrev=0)..HEAD --pretty=oneline --abbrev-commit | envman add --key GIT_CHANGELOG | |
| echo $GIT_CHANGELOG |