Install Babun http://babun.github.io/
Install Hyper http://hyper.is/
Download Fira Code font https://github.com/tonsky/FiraCode
Install Babun http://babun.github.io/
Install Hyper http://hyper.is/
Download Fira Code font https://github.com/tonsky/FiraCode
If you're trying to do this, you came to the right place!
Watch this code work in real time: https://twitter.com/CodingDoug/status/940022568089554944
See also this gist for copying in the other direction: https://gist.github.com/CodingDoug/44ad12f4836e79ca9fa11ba5af6955f7
const fs = require("fs"); | |
const argv = require("yargs") | |
.alias("p", "path") | |
.usage("Usage: add path with the -p flag") | |
.example('node renamer.js -p "./pathToFilesToRename"') | |
.help("h").argv; | |
let PATH; | |
if (argv === "p") { |
var db = require("diskdb"); | |
var fetch = require("node-fetch"); | |
db = db.connect( | |
"./db", | |
["fetchData"] | |
); | |
async function fetchData() { | |
const url1 = "https://www.google.com"; |
class Node { | |
constructor(data, next = null) { | |
this.data = data; | |
this.next = next; | |
} | |
} | |
class LinkedList { | |
constructor() { |
const gulp = require('gulp'); | |
const bom = require('gulp-bom'); | |
var ext_replace = require('gulp-ext-replace'); | |
gulp.task('bom-ify', () => { | |
gulp | |
.src('./test-files/*.srt') | |
.pipe(bom()) | |
.pipe(gulp.dest('dist')); | |
}); |
var fs = require('fs'), | |
async = require('async'), | |
readMultipleFiles = require('read-multiple-files'); | |
var dirPath = 'sample_files/'; | |
//------------------------------------------------------ | |
//fs module to read multiple files using async | |
//Web Link=> | |
//------------------------------------------------------ |
from faker import Faker | |
fake = Faker('es_ES') | |
for _ in range(10): | |
print(fake.address()) | |
for _ in range(30): | |
print(fake.name()) |