Skip to content

Instantly share code, notes, and snippets.

@cristenicu
cristenicu / .Xmodmap
Created August 27, 2018 12:04
Remap CAPSLOCK to ENTER (Linux)
clear lock
keycode 66 = KP_Enter
@cristenicu
cristenicu / .xbindkeysrc
Created August 27, 2018 11:58
Logitech MX Master KeyBindings (Linux)
"xte 'keydown Control_L' 'keydown Alt_L' 'key Up' 'keyup Control_L' 'keyup Alt_L'"
b:9
"xte 'keydown Control_L' 'keydown Alt_L' 'key Down' 'keyup Control_L' 'keyup Alt_L'"
b:8
@cristenicu
cristenicu / eway.php
Created January 31, 2018 12:55
Translate eway response codes to actual message
<?php
return [
'messages' => [
// Transaction response messages
'A2000' => 'Transaction Approved',
'A2008' => 'Honour With Identification',
'A2010' => 'Approved For Partial Amount',
'A2011' => 'Approved, VIP',
'A2016' => 'Approved, Update Track 3',
@cristenicu
cristenicu / register.js
Created July 27, 2017 08:34
Web Push Notifications
var serviceWorkerRegistration;
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
serviceWorkerRegistration = registerServiceWorker();
});
}
function registerServiceWorker() {
return navigator.serviceWorker.register('service_worker.js')