Skip to content

Instantly share code, notes, and snippets.

View yehudamakarov's full-sized avatar
🎯
Focusing

Yehuda Makarov yehudamakarov

🎯
Focusing
View GitHub Profile
@yehudamakarov
yehudamakarov / DoubleTap.js
Last active May 7, 2019 02:42
[React Recipes]
import React from 'react';
import { TouchableWithoutFeedback } from 'react-native';
export default class DoubleTap extends React.Component {
static defaultProps = {
delay: 300,
onDoubleTap: () => null,
};
@yehudamakarov
yehudamakarov / nodemon.json
Last active May 3, 2019 02:07
[Config Files] config settings that may need to be used in various places
{
"ignore": ["**/*.test.ts", "**/*.spec.ts", ".git", "node_modules"],
"watch": ["src"],
"exec": "npm start",
// probably just extension...
"ext": "ts"
}
// and in package.json:
@yehudamakarov
yehudamakarov / symlink.md
Last active May 3, 2019 02:04
[Bash Commands] bash commans that may need to be used
@yehudamakarov
yehudamakarov / ChumashModel.ts
Last active May 3, 2019 02:05
[Typescript Mongoose]
import mongoose, { Document, Model } from "mongoose";
import { IRashiDocument, IRashiObject, RashiSchema } from "./Rashi";
export interface IChumashObject {
learnOnDate: Date;
dayOfTheWeek: string;
hebrewPesukim: Pesukim;
englishPesukim: Pesukim;
amountOfPesukim: number | null;
rashiDocument: IRashiObject;
@yehudamakarov
yehudamakarov / readme.md
Last active November 22, 2018 16:43 — forked from benstr/readme.md
Gist Markdown Cheatsheet

#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6


Paragraph