Skip to content

Instantly share code, notes, and snippets.

@MariaSolOs
MariaSolOs / builtin-compl.lua
Last active January 11, 2025 23:46
Built-in completion + snippet Neovim setup
---Utility for keymap creation.
---@param lhs string
---@param rhs string|function
---@param opts string|table
---@param mode? string|string[]
local function keymap(lhs, rhs, opts, mode)
opts = type(opts) == 'string' and { desc = opts }
or vim.tbl_extend('error', opts --[[@as table]], { buffer = bufnr })
mode = mode or 'n'
vim.keymap.set(mode, lhs, rhs, opts)

Mejora tus habilidades de desarrollo con Clean Code y VS CODE

Instalaciones Necesarias

opcional - Yarn

@FrancesCoronel
FrancesCoronel / sampleREADME.md
Last active January 11, 2025 23:46
A sample README for all your GitHub projects.

Repository Title Goes Here

Frances Coronel

INSERT GRAPHIC HERE (include hyperlink in image)

Subtitle or Short Description Goes Here

ideally one sentence >

@timothywarner
timothywarner / github-copilot-certification-resources.md
Last active January 11, 2025 23:45
GitHub Copilot Certification Resources

🚀 GitHub Copilot Tips for Healthcare Teams

A curated collection of best practices, tips, and resources to help healthcare professionals and development teams unlock the full potential of GitHub Copilot. Designed for sensitive environments, this guide highlights actionable advice, insightful articles, and compliance-minded practices. 🌟

📋 Table of Contents

  1. 💡 Why GitHub Copilot for Healthcare?
  2. 🔧 Quick Setup and Best Practices
  3. 🧑‍⚕️ Healthcare-Specific Use Cases
  4. ⚖️ Compliance and Security Best Practices
  5. 🤝 Connect with Me
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Nathan Harris",
"label": "Software Engineer II | PSM I",
"image": "https://raw.githubusercontent.com/nwithan8/nwithan8.github.io/master/images/headshot_transparent.png",
"email": "[email protected]",
"url": "https://github.com/nwithan8",
"summary": "Excited to take head-on the fast-paced, high-stakes world of software development.\nRetired journalist.",
"location": {
@bradtraversy
bradtraversy / terminal-commands.md
Last active January 11, 2025 23:39
Common Terminal Commands

Common Terminal Commands

Key Commands & Navigation

Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:

  • Up Arrow: Will show your last command
  • Down Arrow: Will show your next command
  • Tab: Will auto-complete your command
  • Ctrl + L: Will clear the screen
@IJEMIN
IJEMIN / .gitignore
Last active January 11, 2025 23:38
Unity + Rider gitignore
# Created by https://www.gitignore.io/api/unity
# Edit at https://www.gitignore.io/?templates=unity
# Jetbrain Rider Cache
.idea/
Assets/Plugins/Editor/JetBrains*
# Visual Studio Code
.vscode/
@Pupix
Pupix / index.js
Last active January 11, 2025 23:32
A minimal WAMP 1.0 protocol implementation to be used with the new League of Legends client (LCU)
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
const WebSocket = require('ws');
const MESSAGE_TYPES = {
WELCOME: 0,
PREFIX: 1,
CALL: 2,
CALLRESULT: 3,
CALLERROR: 4,