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
# First time setup - https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup | |
# Line endings - https://help.github.com/en/articles/dealing-with-line-endings | |
# Learn branching - http://pcottle.github.com/learnGitBranching/ | |
[user] | |
name = Alexey Bass | |
email = [email protected] | |
[color] | |
ui = true |
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
Chassis Type: 5J - Skoda Fabia II (manual gearbox, no navigation, no phone, no bluetooth) | |
Scan: 01 03 08 09 15 17 19 25 44 56 | |
Address 01: Engine (J623-CBZB) | |
Address 03: ABS Brakes (J104) | |
Address 08: Auto HVAC (J255) | |
Address 09: Cent. Elect. (J519) | |
Address 15: Airbags (J234) | |
Address 17: Instruments (J285) | |
Address 19: CAN Gateway (J533) |
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 randomString(length, chars) { | |
var result = ''; | |
for (var i = length; i > 0; --i) { | |
result += chars[Math.round(Math.random() * (chars.length - 1))]; | |
} | |
return result; | |
} | |
var dictionary = ''; | |
dictionary+= 'ABCDEFGHKLMNPQRTWXYZ'; // IJOSUV |
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
+972-50-809-1010 | |
+972-58-780-5377 | |
+972-9-773-0541 - Drink Center, Netanya | |
000-014-01 | |
026-312-902 | |
050-509-1010 | |
054-400-2816 | |
055-700-0904 | |
072-221-9444 | |
072-221-9506 |
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
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; |
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
/* | |
1. open page http://www.dd-wrt.com/wiki/index.php/Supported_Devices | |
2. open browser's console (in Google Chrome or Mozilla Firefox) | |
3. inject jQuery | |
4. tune your filter | |
5. run snippet | |
*/ | |
// inject jQuery | |
(function() { |
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 log(msg) { | |
console.log(getTime()+ ': '+ msg); | |
} | |
function getTime() { | |
var d = new Date(); | |
return pad(d.getHours()) +':'+ pad(d.getMinutes()) +':'+ pad(d.getSeconds()) +'.'+ rpad(d.getMilliseconds(), 3); | |
} | |
function pad(val, len) { |
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
Param IDs and names. |
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
/** | |
Useful links | |
https://wiki.wemos.cc/products:d1:d1_mini | |
https://cdn-images-1.medium.com/max/1400/1*YKc8KpAfMrlhrOLmNjdRwQ.png (D1 full pinout) | |
https://github.com/Jorgen-VikingGod/ESP8266-MFRC522 | |
https://github.com/miguelbalboa/rfid | |
d1 mini rc52 wiring | |
https://discourse-cdn-sjc1.com/business5/uploads/mydevices/original/2X/e/ecedba79dc05f2c0b02b7fba8b3da2681590a11a.jpg |
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
/** | |
To program lite version, choose | |
Generic ESP8266 Module, 80 Mhz, 40 Mhz, DOUT, 921600, 1M (512K SPIFFS), nodemcu, Disabled, None | |
DOUT and nodemcu! | |
*/ | |
#include "ESP8266WiFi.h" | |
#include <Adafruit_NeoPixel.h> | |