Skip to content

Instantly share code, notes, and snippets.

View LouisHrg's full-sized avatar
🦍
Reject humanity, return to monke

Louis Harang LouisHrg

🦍
Reject humanity, return to monke
  • Wizards Technologies
  • France
View GitHub Profile
@mikebirdgeneau
mikebirdgeneau / output-v0.log
Last active July 19, 2024 07:27
Native Instruments - Archlinux Wine Install
❯ wine .wine/drive_c/Program\ Files/Native\ Instruments/Native\ Access/Native\ Access.exe >> native_access_wine.log
MESA-INTEL: warning: Performance support disabled, consider sysctl dev.i915.perf_stream_paranoid=0
00f4:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (000000000021FB40 1 C) semi-stub
00f4:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (000000000021FBF8 1 C) semi-stub
00f4:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (000000000021FCD0 1 C) semi-stub
00f4:fixme:service:I_ScRegisterDeviceNotification Notification filters are not yet implemented.
00f4:fixme:ntdll:NtQueryInformationToken QueryInformationToken( ..., TokenElevation, ...) semi-stub
00f4:fixme:file:NtLockFile I/O completion on lock not implemented yet
00f4:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (000000000021CCB0 1 C) semi-stub
@mrcrilly
mrcrilly / gin_jwt_middleware.go
Last active July 3, 2025 09:40
Gin JWT Middleware (Example)
package main
import (
"errors"
"net/http"
"strconv"
"strings"
"time"
"github.com/dgrijalva/jwt-go"
@corbanb
corbanb / pre-request-jwt.js
Last active July 22, 2024 13:12
JWT tokenize - Postman Pre-Request Script
function base64url(source) {
// Encode in classical base64
encodedSource = CryptoJS.enc.Base64.stringify(source);
// Remove padding equal characters
encodedSource = encodedSource.replace(/=+$/, '');
// Replace characters according to base64url specifications
encodedSource = encodedSource.replace(/\+/g, '-');
encodedSource = encodedSource.replace(/\//g, '_');
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">