Skip to content

Instantly share code, notes, and snippets.

@benwo
benwo / meta-tags.html
Last active May 13, 2024 21:44
Standard meta tags and meta image tags (and sizes).
<!DOCTYPE html>
<html itemscope itemtype="http://schema.org/Organization" lang="en">
<head>
<!-- Settings -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Search Engines -->
@SwooshyCueb
SwooshyCueb / almalinux
Last active May 13, 2024 21:42
Various os-release files
NAME="AlmaLinux"
VERSION="8.4 (Electric Cheetah)"
ID="almalinux"
ID_LIKE="rhel centos fedora"
VERSION_ID="8.4"
PLATFORM_ID="platform:el8"
PRETTY_NAME="AlmaLinux 8.4 (Electric Cheetah)"
ANSI_COLOR="0;34"
CPE_NAME="cpe:/o:almalinux:almalinux:8.4:GA"
HOME_URL="https://almalinux.org/"
@afmiguez
afmiguez / wsl-kvm.sh
Last active May 13, 2024 21:41
Script to enable KVM in WSL2
#Fully based on https://boxofcables.dev/accelerated-kvm-guests-on-wsl-2/
if [ -z "$1" ]
then
echo "Must supply your Windows 10 username"
exit
fi
WIN_USERNAME=$1
#package updates and installations
@fnky
fnky / ANSI.md
Last active May 13, 2024 21:40
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@pedroeuzebioo
pedroeuzebioo / README.md
Last active May 13, 2024 21:35
Modelo de README (Perfil)

Olá! Tudo bem? Eu sou o Seu nome

Linha adicional de texto informativo sobre você. Seu Sobre deve ter cerca de 2 ou 3 linhas.

Linha adicional de citação de texto. (Opcional)

@devemdobro
devemdobro / README.md
Created January 31, 2022 20:49
README perfil devemdobro
@jfktrey
jfktrey / getch.py
Last active May 13, 2024 21:31
Cross-platform getch() for Python without any fuss
import platform
if platform.system() == "Windows":
import msvcrt
def getch():
return msvcrt.getch()
else:
import tty, termios, sys
def getch():
fd = sys.stdin.fileno()
@Samyany
Samyany / FFmpeg_french_quick_userguide.md
Last active May 13, 2024 21:30
Guide d'utilisation rapide en français de FFmpeg pour la manipulation vidéo

Guide rapide d'utilisation de FFmpeg

Ce document est un résumé rapide basé sur la documentation officielle de FFmpeg. Il a été créé pour faciliter la manipulation vidéo, bien que certaines informations puissent également être pertinentes pour l'audio.

Note : Ce document est une compilation de ce que j'ai compris et de mes propres expériences. Il est fait d'abord pour moi, est incomplet et peut contenir des erreurs.

Informations générales

@tanaikech
tanaikech / submit.md
Created November 11, 2020 05:23
Benchmark: Measuring Process Costs for Formulas in Cells on Google Spreadsheet using Google Apps Script

Benchmark: Measuring Process Costs for Formulas in Cells on Google Spreadsheet using Google Apps Script

Description

When Google Spreadsheet is used, there is the case that the built-in functions and the custom functions in the cells are used. For the functions of Google Apps Script, there is the method for measuring the process cost. Ref But for the built-in functions, it is required to create the script for it. In this report, the script for measuring a function put in a cell has been proposed, and the process cost of the built-in functions has been measured. The proposed script can measure the process cost for the built-in functions and custom functions on Google Spreadsheet. The script is created with using Google Apps Script. When the process cost can be known for the built-in functions and custom functions, it is considered that it will be useful for the developers using Google Spreadsheet.

The origin of this method

export const firstNameAndLastnamePattern: string = '([a-zA-Z]+) ([a-zA-Z]+)';
export const emailPattern: string = "^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,4}$";