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
/* | |
This is a simple JavaScript parsing of generic automotive OBD-2 codes. This is just a generic description, so not all codes will be accurate per manufacturer. | |
Codes Ranges: | |
PXXXX (P0000-P1917) | |
CXXXX (C1091-C1963) | |
BXXXX (B1200-B2606) | |
UXXXX (U1900-A few) | |
Eg: console.log(OBDs["P303"]) // 'Cylinder 3 Misfire Detected' |
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
/* | |
ANSI-C C90: -std=c99 -c -Wall -ansi -pedantic-errors -fstack-protector-all -Werror -Wshadow | |
Build: gcc username-pass-io.c -o io.o | |
*/ | |
/* | |
Produced 2020 | |
By https://amattu.com/links/github | |
Copy Alec M. |
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
/* | |
Produced 2020 | |
By https://amattu.com/links/github | |
Copy Alec M. | |
License GNU Affero General Public License v3.0 | |
*/ | |
/* | |
Description: | |
- Read the specified file into the console |
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
""" | |
Produced 2020 | |
By https://amattu.com/links/github | |
Copy Alec M. | |
""" | |
""" | |
Original Author | |
https://www.geeksforgeeks.org/an-introduction-to-multilabel-classification/ | |
""" |
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
""" | |
Labels automotive appointment description/comments | |
based on a trained multi-label classification model | |
Expected CSV structure: | |
ID|Tech|Service|Comments|mechanical|bodywork|diagnostic|suspension|engine|exhaust|electrical|brakes|tires | |
Structre notes: | |
ID, Tech, Service - Irrelevent, used during transcription | |
Comments - Used to generate the model |
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
-- phpMyAdmin SQL Dump | |
-- version 4.9.7deb1 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: localhost:3306 | |
-- Generation Time: Dec 24, 2020 at 07:08 AM | |
-- Server version: 8.0.22-0ubuntu0.20.10.2 | |
-- PHP Version: 7.4.9 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
<!-- Alec M., 2021 --> | |
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Action Prompt Design</title> | |
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> | |
<style> | |
/* Variables */ | |
:root { |
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
<!DOCTYPE html> | |
<!-- Alec M., 2021 --> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Upcoming Notification</title> | |
<style> | |
body, HTML { | |
background: #f2f5f7; | |
margin: 0; |
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
<html> | |
<!-- Alec M., 2021 --> | |
<head> | |
<title>Offline Example</title> | |
<style> | |
/* Standard Items */ | |
html, body { | |
margin: 0; | |
padding: 0; | |
font-family: sans-serif; |
OlderNewer