See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import moment from 'moment'; | |
| export function extractColDocumentData(data) { | |
| let dataString = data.barcodes[0]?.data.replaceAll('�', ' '); | |
| if (!dataString.includes('PubDSK_1')) { | |
| throw new Error('Invalid barcode data, only PubSub_1 is supported'); | |
| } |
| [ | |
| "access-point", | |
| "access-point-network", | |
| "access-point-network-off", | |
| "account", | |
| "account-alert", | |
| "account-alert-outline", | |
| "account-arrow-left", | |
| "account-arrow-left-outline", | |
| "account-arrow-right", |
| // Command Line User Input in Golang | |
| // REFERENCE: https://stackoverflow.com/questions/20895552/how-to-read-from-standard-input-in-the-console | |
| package main | |
| import ( | |
| "fmt" | |
| "bufio" | |
| "os" | |
| ) |
| <div id="invoice-POS"> | |
| <center id="top"> | |
| <div class="logo"></div> | |
| <div class="info"> | |
| <h2>SBISTechs Inc</h2> | |
| </div><!--End Info--> | |
| </center><!--End InvoiceTop--> | |
| node_modules | |
| npm-debug.log |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class Move : MonoBehaviour { | |
| private CharacterController player; | |
| public float Speed; | |
| package main | |
| import ( | |
| "log" | |
| "net/smtp" | |
| ) | |
| func main() { | |
| send("hello there") | |
| } |
| #include <iostream> | |
| #include <string> | |
| #include <curl/curl.h> | |
| static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp) | |
| { | |
| ((std::string*)userp)->append((char*)contents, size * nmemb); | |
| return size * nmemb; | |
| } |