Short description about the project and it's purpose. Includes e.g. projects main goal, intended users, some history (if old project) etc.
Project team and other people that are involved with the project.
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; |
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>' + |
<!DOCTYPE html> | |
<title>Raffle</title> | |
<script> | |
const names = ` | |
Testy McTesterson | |
Teofila Kamer | |
Gerard Yann | |
Majorie England | |
Shantell Donaldson | |
Chuck Daily |
#!/usr/bin/env python | |
import os | |
import time | |
from pyA20Lime.gpio import gpio | |
from pyA20Lime.gpio import port | |
from autojenkins import Jenkins | |
### configration parameters |
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>' + |
I hereby claim:
To claim this, I am signing this object:
// 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'), |
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" }, |