Skip to content

Instantly share code, notes, and snippets.

@yungwarlock
yungwarlock / 0main.md
Created August 16, 2019 17:54 — forked from pandeiro/0main.md
Git Best Practices

Git Best Practices

This is a fairly common question, and there isn't a One True Answer, but still, this represents a consensus from #git

Read about git

Knowing where to look is half the battle. I strongly urge everyone to read (and support) the Pro Git book. The other resources are highly

@yungwarlock
yungwarlock / 01-directory-structure.md
Created April 22, 2021 08:27 — forked from tracker1/01-directory-structure.md
Anatomy of a JavaScript/Node project.

Directory structure for JavaScript/Node Projects

While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.

Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.

Directories

  • lib/ is intended for code that can run as-is
  • src/ is intended for code that needs to be manipulated before it can be used
@yungwarlock
yungwarlock / ExampleComponent.js
Created July 14, 2021 00:55 — forked from prokizzle/ExampleComponent.js
useFeatureFlag Example
import React from 'react';
import useFeatureFlag from './useFeatureFlag';
import RecommendationsComponent from './Recommendations.js';
const {
DecoratedComponent: Recommendations,
featureEnabled: recommendationsFeatureEnabled,
FeatureFlag
} = useFeatureFlag({
Component: RecommendationsComponent,
@yungwarlock
yungwarlock / insertionsort.py
Created February 17, 2022 02:04 — forked from pythonbee/insertionsort.py
Insertion sort in python
def insertionsort(A):
#we start loop at second element (index 1) since the first item is already sorted
for j in range(1,len(A)):
key = A[j] #The next item we are going to insert into the sorted section of the array
i = j-1 #the last item we are going to compare to
#now we keep moving the key back as long as it is smaller than the last item in the array
while (i >= 0) and key < A[i]: #if i == -1 means that this key belongs at the start
A[i+1]=A[i] #move the last object compared one step ahead to make room for key
i=i-1 #observe the next item for next time.
@yungwarlock
yungwarlock / pull_request.md
Created April 16, 2022 09:38
Fixing bazel rules_python import issues
#!/usr/bin/env bash
# Initialize all the option variables.
# This ensures we are not contaminated by variables from the environment.
file=
verbose=0
show_help() {
echo "Hello"
}
@yungwarlock
yungwarlock / main.dart
Last active June 26, 2023 14:24
Dart Timer
import 'dart:async';
void main() {
int countDown = 60;
bool shouldShowResend = false;
Timer.periodic(const Duration(seconds: 1), (t) {
print(formatTime(countDown));
print(shouldShowResend);
});
@yungwarlock
yungwarlock / nearest_neighbor.ipynb
Created July 2, 2023 01:09
nearest_neighbor.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
async function uploadCourseThumbnail(path: string) {
const fileID = createID();
const file = storage.file(`${fileID}.png`);
file.makePublic();
return new Promise((resolve, reject) => {
const publicUrl = file.publicUrl();
fs.createReadStream(path)
@yungwarlock
yungwarlock / main.js
Created August 21, 2023 13:51
Uploading a file using file stream to firebase storage
// async function uploadCourseThumbnail(path: string) {
// const fileID = createID();
// const file = storage.file(`${fileID}.png`);
// file.makePublic();
// return new Promise((resolve, reject) => {
// const publicUrl = file.publicUrl();