Skip to content

Instantly share code, notes, and snippets.

@akimabs
akimabs / Animate-SplashScreen
Created February 18, 2020 08:29
Animate SplashScreen
import React, {useEffect, useState} from 'react';
import {
View,
SafeAreaView,
StatusBar,
Animated,
StyleSheet,
Text,
} from 'react-native';
import {Colors} from '_styles';
@parmentf
parmentf / GitCommitEmoji.md
Last active April 24, 2025 05:25
Git Commit message Emoji
@artemgordinskiy
artemgordinskiy / node-npm-in-docker.sh
Created December 11, 2015 14:00
Run Node/NPM in a Docker container
# For example, run "npm install"
docker run -v "$PWD":/usr/src/app -w /usr/src/app node:4 npm install
# This command creates a container (downloading one first if you don't have it locally), runs the command in a current directory and quits the container
# Great Success!