Skip to content

Instantly share code, notes, and snippets.

View ondiekelijah's full-sized avatar
🏠
Working from home

Elijah Ondiek ondiekelijah

🏠
Working from home
View GitHub Profile
@vcapretz
vcapretz / instagram-like-button.jsx
Created January 15, 2021 14:00
A simple Like button with a nice animation using react-native-reanimated v2, support for my post in https://vcapretz.com/2021/instagram-button-react-native
import React from "react";
import Animated, {
useSharedValue,
withSpring,
useAnimatedStyle,
Extrapolate,
interpolate,
} from "react-native-reanimated";
import { Pressable, View, Button, StyleSheet } from "react-native";
import { MaterialCommunityIcons } from "@expo/vector-icons";
@ivankisyov
ivankisyov / writing-tests-with-jest-on-nodejs.md
Last active December 8, 2022 02:15
Writing Tests with Jest on Node.js

Writing Tests with Jest on Node.js

Installation

npm i --save-dev jest

Configuration

@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 22, 2024 06:03
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example