This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fileHash = crypto.createHash('md5').update(fileContents).digest('hex'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require("fs"); | |
const fsPromises = require("fs").promises; | |
/** | |
* Util function we will reuse to check if the caught error is simply a "not found" error | |
* | |
* @param {*} err | |
* @returns {boolean} | |
*/ | |
function isErrorNotFound(err) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Windows only: Don't forget how to build and start Flyimg in windows 10 home environment with Cmder (conEmu) | |
# Must have virtualbox installed, ideally through docker toolbox | |
# do this only once | |
docker-machine create --driver virtualbox default | |
# all the subsequent times, only this | |
docker-machine start default | |
# hook the virtual env to docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Copied from: https://raw.githubusercontent.com/wardviaene/jenkins-course/master/scripts/install_jenkins.sh | |
# Updated with : https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
# this script is only tested on ubuntu xenial and bionic | |
# sudo is only if you are not on root (you should not be on root) | |
# Uninstall previous versions of docker | |
sudo apt-get remove docker docker-engine docker.io containerd runc | |
sudo apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** list of mock File elements to pass the input[file] */ | |
export function getBrowsedFiles(): FileList { | |
return fileListFromArray([ | |
mockFileCreator({ name: 'file-one.png', type: 'image/png', size: 234 * 1000 }), | |
mockFileCreator({ name: 'file-two.gif', type: 'image/gif', size: 56 * 1000 }), | |
]); | |
} | |
export function mockFileCreator({ | |
name = 'file.txt', |
OlderNewer