Skip to content

Instantly share code, notes, and snippets.

Avatar

Isak La Fleur Engdahl isaklafleur

  • Spain, Sweden, Brazil
View GitHub Profile
@isaklafleur
isaklafleur / MongoDB Cheat Sheet
Last active April 25, 2017 11:21
MongoDB Cheat Sheet
View MongoDB Cheat Sheet
// use mongoimport to import a data in JSON format into the database
$ mongoimport --db pacman --collection enemies --file pacman.json
$ mongoimport --db restaurants --collection restaurants --drop --file ~/downloads/primer-dataset.json
// Insert one document in the database
$ db.enemies.insertOne({ name: 'pacman' });
// can use javascript in MongoDB
$ const t = { name: 'Isak' }
$ db.enemies.insertOne(t);
View GoogleApi.js
export const GoogleApi = function(opts) {
opts = opts || {}
const apiKey = opts.apiKey;
const libraries = opts.libraries || [];
const client = opts.client;
const URL = 'https://maps.googleapis.com/maps/api/js';
const googleVersion = '3.22';
let script = null;
@jwebcat
jwebcat / gist:5122366
Last active September 14, 2023 21:12 — forked from lemenkov/gist:1674929
Properly download from github using wget and curl
View gist:5122366
wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/joyent/node/tarball/v0.7.1
@andrei-m
andrei-m / levenshtein.js
Last active September 14, 2023 05:44
Levenshtein distance between two given strings implemented in JavaScript and usable as a Node.js module
View levenshtein.js
/*
Copyright (c) 2011 Andrei Mackenzie
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE