Update: 2019-10-04 - intallation on t-flex comp (WSL 2)
See: Manual download
| Section "Device" | |
| Identifier "Device0" | |
| Driver "intel" | |
| VendorName "INTEL Corporation" | |
| Option "TripleBuffer" "true" | |
| Option "TearFree" "true" | |
| EndSection |
| gistup |
Update: 2019-10-04 - intallation on t-flex comp (WSL 2)
See: Manual download
| #!/usr/bin/env node | |
| console.log('yay gist') |
| #!/bin/bash | |
| # This script create a new repo on github.com, then pushes the local repo from the current directory to the new remote. | |
| # It is a fork of https://gist.github.com/robwierzbowski/5430952/. Some of Rob's lines just didn't work for me, and to fix them I needed to make it more verbose so that a mere electrical engineer could understand it. | |
| # This script gets a username from .gitconfig. If it indicates that your default username is an empty string, you can set it with | |
| # git config --add github.user YOUR_GIT_USERNAME | |
| # Gather constant vars |
This is my solution for Roman Numeral Converter challenge on FCC.
// jshint esversion:6
function convertToRoman(num) {
let splitedNum = num.toString().split('');
function converter(place, decimal) {| module.exports = { | |
| "env": { | |
| "browser": true, | |
| "commonjs": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "experimentalObjectRestSpread": true, |
| module.exports = { | |
| entry: './main.js', | |
| output: { | |
| path: './', | |
| filename: 'index.js' | |
| }, | |
| devServer: { | |
| inline: true, | |
| port: 3333 | |
| }, |
| module.export = { | |
| entry: './main.js', | |
| output: { | |
| path: './', | |
| filename: 'index.js' | |
| }, | |
| devServer: { | |
| inline: true, | |
| port: 3333 | |
| }, |
| module.exports = { | |
| "env": { | |
| "browser": true, | |
| "commonjs": true, | |
| "es6": true, | |
| "node": true | |
| }, | |
| "extends": "eslint:recommended", | |
| "parserOptions": { | |
| "ecmaFeatures": { |