Skip to content

Instantly share code, notes, and snippets.

View AbhimanyuAryan's full-sized avatar
:octocat:
"Attention is all you need" - Birth of LLM 2017

Abhimanyu Aryan AbhimanyuAryan

:octocat:
"Attention is all you need" - Birth of LLM 2017
View GitHub Profile
@AbhimanyuAryan
AbhimanyuAryan / Cargo.toml
Created October 9, 2022 21:38 — forked from CoolOppo/Cargo.toml
How to compile to a DLL in rust while using it as a normal rust library
[package]
name = "test"
version = "0.1.0"
authors = ["YOU <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
@AbhimanyuAryan
AbhimanyuAryan / clutter-free-vscode.jsonc
Created January 2, 2024 06:50 — forked from kamilogorek/_screenshot.md
Clutter-free VS Code Setup
// Required Plugin: https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension
// settings.json
{
// Remove left-side icons
"workbench.activityBar.location": "hidden",
// Remove bottom status bar
"workbench.statusBar.visible": false,
// Remove position indicator in the editor's scrollbar
"editor.hideCursorInOverviewRuler": true,

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