Skip to content

Instantly share code, notes, and snippets.

View Armanoide's full-sized avatar

Billa Norbert Armanoide

View GitHub Profile
@Armanoide
Armanoide / config.yml
Created January 26, 2022 16:34 — forked from albertogalca/config.yml
Circle CI Config for fastlane
version: 2
aliases:
- &restore_npm_cache
name: 'Restoring node_modules from the cache'
key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }}
- &install_npm_dependencies
name: Installing NPM Dependencies
command: yarn install
- &save_npm_cache
@Armanoide
Armanoide / Fix_react-native-material-textfield_issue_Animated.Text.propTypes.style.md
Last active September 8, 2022 09:18
fix react-native-material-textfield module with issue undefined is not an object Animated.Text.propTypes.style

Installation:

  1. Download patch.zip
  2. set it at the root of the project
  3. unzip the patch.zip
  4. add this line in package.json
  5. yarn install
"scripts": { 
@Armanoide
Armanoide / gist:eaae1d1d1262cd7774b82ec49c8e575a
Created January 18, 2017 08:50
Alias clean Xcode caches
alias xcodeclean="rm -frd ~/Library/Developer/Xcode/DerivedData/* && rm -frd ~/Library/Caches/com.apple.dt.Xcode/*" |