Skip to content

Instantly share code, notes, and snippets.

@illud
illud / semantic-commit-messages.md
Created September 13, 2023 21:30 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@illud
illud / curl_example.cpp
Created June 15, 2023 21:08 — forked from alghanmi/curl_example.cpp
cURL C++ Example
#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;
}
@illud
illud / type-orm_nestjs.md
Created October 1, 2021 01:14 — forked from nicobytes/type-orm_nestjs.md
Steps: TypeOrm + NestJs

1. Create project

npm i -g @nestjs/cli
nest new tasks-api
npm run start:dev

2. Overview and delete files

3. Create module

nest g mo tasks
@illud
illud / index.html
Created December 8, 2020 19:31 — forked from wildshark/index.html
POS Receipt Template Html Css
<div id="invoice-POS">
<center id="top">
<div class="logo"></div>
<div class="info">
<h2>SBISTechs Inc</h2>
</div><!--End Info-->
</center><!--End InvoiceTop-->