I hereby claim:
- I am cvuorinen on github.
- I am cvuorinen (https://keybase.io/cvuorinen) on keybase.
- I have a public key ASC8S8pTO7Pskhc8K6Aa4oCgRlhytBXVTdQ7BgZjGxZEdwo
To claim this, I am signing this object:
| const querystring = require('querystring'); | |
| const semver = require("semver"); | |
| const dateFns = require("date-fns"); | |
| const versionDates = { | |
| // https://nodejs.org/en/about/releases/ | |
| // https://endoflife.date/nodejs | |
| nodejs: [ | |
| { version: "16.x", eol: "2024-04-30" }, | |
| { version: "15.x", eol: "2021-06-01" }, |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <title>Raffle</title> | |
| <script> | |
| const names = ` | |
| Testy McTesterson | |
| Teofila Kamer | |
| Gerard Yann | |
| Majorie England | |
| Shantell Donaldson | |
| Chuck Daily |
| // Karma configuration file, see link for more information | |
| // https://karma-runner.github.io/0.13/config/configuration-file.html | |
| module.exports = function (config) { | |
| config.set({ | |
| basePath: '', | |
| frameworks: ['jasmine', '@angular/cli'], | |
| plugins: [ | |
| require('karma-jasmine'), | |
| require('karma-chrome-launcher'), |
| angular.module('app', ['asyncFilter']) | |
| .directive('autocomplete', function () { | |
| return { | |
| scope: {}, | |
| template: '<input />' + | |
| '<ul class="suggestions">' + | |
| '<li ng-repeat="suggestion in suggestions | async:this">' + | |
| '<a href="https://github.com/{{ suggestion }}"' + | |
| ' target="_blank">{{ suggestion }}</a>' + | |
| '</li>' + |
| angular.module('app', ['rx']) | |
| .directive('autocomplete', function () { | |
| return { | |
| scope: {}, | |
| template: '<input ng-model="val" ng-change="update(val)" />' + | |
| '<ul class="suggestions">' + | |
| '<li ng-repeat="suggestion in suggestions">' + | |
| '<a href="https://github.com/{{ suggestion }}"' + | |
| ' target="_blank">{{ suggestion }}</a>' + | |
| '</li>' + |
| angular | |
| .module('asyncFilter', []) | |
| .filter('async', function() { | |
| const values = {}; | |
| const subscriptions = {}; | |
| function async(input, scope) { | |
| // Make sure we have an Observable or a Promise | |
| if (!input || !(input.subscribe || input.then)) { | |
| return input; |
| #!/usr/bin/env python | |
| import os | |
| import time | |
| from pyA20Lime.gpio import gpio | |
| from pyA20Lime.gpio import port | |
| from autojenkins import Jenkins | |
| ### configration parameters |