https://www.helmade.com/de/helmdesign-arai-sk-6-crown-2361.html https://redplant.net/process-how-we-work/ https://www.nintendo.com/switch/choose-your-joy-con-color/ https://my.deejo.fr/ https://www.baumewatches.com/fr/watch-configurator?movementId=MVT-R41-6004D-QZ-DA#start=1 https://www.forj.shop/ https://www.nike.com/ca/en_gb/c/nikeid https://www.unmade.com/ https://tylko.com/fr/etagere/bibliotheques/339675/?cv=1
This file contains 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
{ | |
"_title": "Light DMX Dashboard", | |
"server": { | |
"listen_port": 8080, | |
"listen_host": "::", | |
"_uid": "www-data", | |
"_gid": "www-data" | |
}, | |
"presets": [ | |
{ |
This file contains 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 | |
##### by RPi_Mike | |
##### https://www.raspberrypi.org/forums/viewtopic.php?f=38&t=199775&sid=b2f3e4ee9032410f3b50354c03641ffb | |
##### Vidware_Downloads: My script philosophy is to keep things clean and simple. That's why my first step is to create 3 different folders to keep the main elements of my script completely separate from each other. Before anything can be built, we first have to download 6 files in the form of "stable release tarballs". This is the raw source code my script will use to build the 6 programs. We also need 4 GPU-related files from the Raspberry Pi Foundation's official GitHub site that provide OpenGL ES and EGL support (they allow mpv to "talk" to the Raspberry's VideoCore GPU and thus facilitate hardware acceleration). Finally, we need a "waf" file that will allow us to build mpv. All of this will go inside the "Vidware_Downloads" folder – which we're creating with the mkdir command: | |
mkdir Vidware_Downloads |
This file contains 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
npm install -g auto-install @feathersjs/cli @vue/cli vue-cli budo clibro electron electron-pdf firebase-tools fkill-cli gofetch gulp-cli website-scraper yo ytdl standard nativefier node-gyp npm mammoth speed-test np |
first install bash: https://msdn.microsoft.com/en-us/commandline/wsl/install_guide
Third, install choco
, open in elevation mode the cmd (with administrative rights) and copy paste :
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
The setting loader is a module that allows to load settings in the form of a JSON. This JSON file can include various parameters. We call them settings.
The settings should be overridable in the following levels :
- default settings in a setting folder, in a JSON file. We might use
HJSON
- override settings loaded depending on the ENV : production / staging / development
This overriding should take the following form :
load(settings/settings.${ENV}.json)
ifload(settings/settings.${ENV}.json)
fail, triesload(settings/${ENV}.json)
else triesload(settings/settings.json)
This file contains 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
function sizeOf(url, callback) { | |
var image = new Image(); | |
image.src = url; | |
image.onload = function () { | |
callback && callback(null, {width: image.width, height: image.height, ratio: image.width/image.height, img: image}) | |
} | |
image.onerror = function(){ | |
callback && callback('error') | |
} | |
} |
This file contains 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
'use strict' | |
var queue = require('async').queue | |
var cache = require("imgcache") | |
var _ = require('lodash') | |
// query the stories | |
// query content of eachStories | |
// then findURLInObject |
This file contains 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
{ | |
"bistre":"1.0.1", | |
"budo":"8.3.0", | |
"cordova":"6.3.1", | |
"devtool":"2.0.3", | |
"firebase-tools":"3.0.7", | |
"generator-babel-boilerplate":"10.0.1", | |
"gulp":"3.9.1", | |
"hihat":"2.6.4", | |
"hotel":"0.5.4", |
This file contains 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
var socket = require('socket.io-client')('http://spacebro.space:8080'); | |
var startTime; | |
setInterval(function() { | |
socket.emit('latency', Date.now(), function(startTime) { | |
var latency = Date.now() - startTime; | |
console.log(latency); | |
}) | |
}, 2000); |
NewerOlder