Europe
- Check r/MechanicalKeyboardsUK - The UK community for mechanical keyboards
- SkinFlint : Price comparison site which has some nice filtering options per switch type etc. Searches for offers in UK, Germany, Poland and Austria
- mykeyboard.eu : Keyboards, keycaps and accessories. Based in Belgium.
- The Keyboard company - keyboardco.com (UK)
- candykeys.com : European Store selling Vortex, Leopold, KBP, Anne Pro keyboards, keycap sets and components. (ISO + ANSI) Based in Germany, ships to EU.
- mechboards.co.uk : Switches, Keycaps, Cases, Plates, DIY Kits
- falba.tech : custom wooden bamboo cases, and some acrylic and carbon ones. Switch packs (65
This file contains hidden or 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 | |
FOLDER=$PWD/*.mkv | |
for filename in $FOLDER; do | |
echo "Processing $filename file..." | |
INPUT=$filename | |
OUTPUT="${filename/.mkv/_x264.mkv}" | |
echo "Processing echo "${filename/.mkv/_x264.mkv}" file..." | |
ffmpeg -y -i $INPUT -c:v libx264 -crf 18 -c:a copy $OUTPUT |
This file contains hidden or 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
import { Injectable, OnDestroy } from '@angular/core'; | |
import { Plugins } from '@capacitor/core'; | |
import { Platform } from '@ionic/angular'; | |
import { fromEvent, Subscription } from 'rxjs'; | |
const { Keyboard } = Plugins; | |
/** | |
* @originalsource https://gist.github.com/Manduro/bc121fd39f21558df2a952b39e907754 | |
* | |
* Usage |
This file contains hidden or 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 | |
default_port=8000 | |
deviceLst=$(adb devices | awk 'NR > 1 {print $1}' | sed ':a;N;$!ba;s/\n/ /g') | |
IFS=' ' read -a array <<< "$deviceLst" | |
## Clean old background processes | |
old_processes=$(pgrep -f 'sh -c ionic cordova run') |
This file contains hidden or 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
root@cobox:~# ansible-playbook ansible/playbook.yml --extra-vars "vm_version=0.2.1 current_env=development current _provider=vagrant" -vvv | |
ansible-playbook 2.7.10 | |
config file = /etc/ansible/ansible.cfg | |
configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] | |
ansible python module location = /usr/lib/python2.7/dist-packages/ansible | |
executable location = /usr/bin/ansible-playbook | |
python version = 2.7.15rc1 (default, Nov 12 2018, 14:31:15) [GCC 7.3.0] | |
Using /etc/ansible/ansible.cfg as config file | |
/etc/ansible/hosts did not meet host_list requirements, check plugin documentation if this is unexpected | |
/etc/ansible/hosts did not meet script requirements, check plugin documentation if this is unexpected |
This file contains hidden or 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
09-25 23:41:25.837 14642-14642/io.ionic.starter I/art: Late-enabling -Xcheck:jni | |
09-25 23:41:25.963 14642-14642/io.ionic.starter W/System: ClassLoader referenced unknown path: /data/app/io.ionic.starter-1/lib/arm | |
09-25 23:41:25.999 14642-14642/io.ionic.starter I/CordovaLog: Changing log level to DEBUG(3) | |
09-25 23:41:25.999 14642-14642/io.ionic.starter I/CordovaActivity: Apache Cordova native platform version 6.3.0 is starting | |
09-25 23:41:25.999 14642-14642/io.ionic.starter D/CordovaActivity: CordovaActivity.onCreate() | |
09-25 23:41:26.008 14642-14642/io.ionic.starter I/WebViewFactory: Loading com.google.android.webview version 69.0.3497.100 (code 349710000) | |
09-25 23:41:26.243 14642-14642/io.ionic.starter I/art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TracingControllerAdapter> | |
Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TracingControllerAdapter> | |
09-25 23:41:26.276 14642-14642/io.ionic.starter I/cr_LibraryLoader: T |
This file contains hidden or 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
<?xml version='1.0' encoding='utf-8'?> | |
<widget id="io.ionic.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
<name>i4-sidemenu</name> | |
<description>An awesome Ionic/Cordova app.</description> | |
<author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author> | |
<content src="index.html" /> | |
<access origin="*" /> | |
<allow-intent href="http://*/*" /> | |
<allow-intent href="https://*/*" /> | |
<allow-intent href="tel:*" /> |
This file contains hidden or 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
import { Component, OnInit, Input, EventEmitter, Output, NgModule } from '@angular/core'; | |
@Component({ | |
selector: 'button-view', | |
template: ` | |
<button type="button" class="btn btn-outline-secondary" ngbPopover="You see, I show up on hover!" triggers="mouseenter:mouseleave" popoverTitle="Pop title"> | |
{{ value }} | |
</button> | |
`, | |
}) |