Skip to content

Instantly share code, notes, and snippets.

@vinlin24
vinlin24 / .bashrc
Created January 17, 2023 03:50
Verilog: EDA Playground to VS Code
# Shorthand for compiling and running Verilog code
function verilog() {
# Default, like in EDA playground
local FILENAMES="'design.sv' 'testbench.sv'"
# If any arguments were provided at all, use those as filenames instead
if [ $# -ne 0 ]; then
FILENAMES=""
# This automatically loops over all items in $@
for i; do
@devnoname120
devnoname120 / My macOS setup.md
Last active January 27, 2025 10:59
My macOS setup

ℹ️ Enable iCloud end-to-end encryption:

  • Nobody knows that, but iCloud actually supports end-to-end encryption (see “Advanced Data Protection for iCloud”) but it's disabled by default. If you care about data privacy, you should turn it on.
    • System settingsApple IDiCloud → Set Advanced Data Protection to On.
    • System settingsApple IDiCloud → Disable Access iCloud Data on the Web.
  • It supports almost all the native Apple apps, with the notable exceptions of iCloud Mail, Contacts, and Calendars. See official data protection matrix for more info.

Quality of life improvements

Mouse:

@Thundernerd
Thundernerd / Docker.cs
Last active January 27, 2025 10:59
Helper to dock EditorWindows
#if UNITY_EDITOR
using System;
using System.Reflection;
using UnityEditor;
using UnityEngine;
public static class Docker
{
#region Reflection Types
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active January 27, 2025 10:58
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@rfay
rfay / nginx-site.conf
Last active January 27, 2025 10:53
Put drupal in a subdirectory - ddev + nginx
# ddev drupal9 config
server {
listen 80 default_server;
listen 443 ssl default_server;
root /var/www/html/maresmuseum/web;
ssl_certificate /etc/ssl/certs/master.crt;
ssl_certificate_key /etc/ssl/certs/master.key;
@simonista
simonista / .vimrc
Last active January 27, 2025 10:52
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@kevin-smets
kevin-smets / iterm2-solarized.md
Last active January 27, 2025 10:51
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

Cronograma de Estudos para Docker

Semana 1: Introdução ao Docker

  • FEITO
  • Teoria (1h):
    • O que é Docker e sua importância em projetos modernos.
    • Conceitos básicos: imagens, containers, volumes, e redes.
    • Instalação do Docker e Docker Compose.
  • Prática (1h):
  • Instalar Docker no seu ambiente de desenvolvimento.
@mikesmullin
mikesmullin / x86-assembly-notes.md
Last active January 27, 2025 10:48
Notes on x86-64 Assembly and Machine Code

Mike's x86-64 Assembly (ASM) Notes

Assembling Binary Machine Code

Operating Modes:

These determine the assumed/default size of instruction operands, and restricts which opcodes are available, and how they are used.

Modern operating systems, booted inside Real mode,

@janlukasschroeder
janlukasschroeder / extracting-financial-statements-from-sec-filings.ipynb
Last active January 27, 2025 10:47
extracting-financial-statements-from-sec-filings.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.