Skip to content

Instantly share code, notes, and snippets.

@avataru
avataru / EloquentCheatSheet.md
Last active May 6, 2024 01:22
Eloquent relationships cheat sheet
@ArduinoBasics
ArduinoBasics / sprintf_functionality.ino
Last active May 6, 2024 01:20
Showing how to use the sprintf function in an Arduino sketch
/*==========================================================================
* Project: sprintf functionality
* Author: Scott C
* Date created: 06 May 2019
* Arduino IDE version: 1.8.5
* Operating System: Windows 10 Pro
* Tutorial Link: https://arduinobasics.blogspot.com/2019/05/sprintf-function.html
*
* Acknowledgements:
* The following resource was a key element of this tutorial: http://www.cplusplus.com/reference/cstdio/printf/
@jordienr
jordienr / tailwind.config.ts
Created July 15, 2023 09:10
Tailwind SVG Grid Background
// Remember to install mini-svg-data-uri
// Follow me on twitter for memes @jordienr
import { type Config } from "tailwindcss";
const {
default: flattenColorPalette,
} = require("tailwindcss/lib/util/flattenColorPalette");
const svgToDataUri = require("mini-svg-data-uri");
export default {
@bluewalk
bluewalk / GetNordVPNWireGuardDetails.md
Last active May 6, 2024 01:14
Getting NordVPN WireGuard details

About

Instructions to obtain WireGuard details of your NordVPN account. These can be used to setup a WireGuard tunnel on your router to NordVPN.

Source: https://forum.gl-inet.com/t/configure-wireguard-client-to-connect-to-nordvpn-servers/10422/27

Prerequisites

If you have any linux machine, use that or install a vm if you don't have one.

Get their official linux app installed. Make sure you have wireguard installed too. And set the used technology to Nordlynx by running nordvpn set technology nordlynx

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Circle Game</title>
<style>
body {
margin: 0;
overflow: hidden;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2D Game</title>
<style>
body {
margin: 0;
overflow: hidden;
@MaximumADHD
MaximumADHD / SelectionGet.lua
Created April 13, 2023 20:36
Autocompletes _# with game.Selection:Get()[#] in Roblox Studio's command bar.
--!strict
local ScriptEditorService = game:GetService("ScriptEditorService")
local ALIAS = "game.Selection:Get()[%s]"
type AutocompleteItem = {
label: string,
kind: Enum.CompletionItemKind?,
tags: {Enum.CompletionItemTag}?,
detail: string?,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2D Game</title>
<style>
body {
margin: 0;
overflow: hidden;
@razhangwei
razhangwei / keys.txt
Created November 26, 2022 16:27
#WiiU ROM/WUD keys #Gaming
66fccb31d608686ab237b2a987e24fe2 # 007 Legends [EUR, WUD]
c47ab82d4aa06b2e87f717370a6961be # 007 Legends [USA, WUD]
9b4266ff9279cd58d03cdb16bf77fed4 # Adventure Time: Explore the Dungeon Because I DON'T KNOW! [EUR, WUD]
fa005119b635f34afeab081fd394f787 # Adventure Time: Explore the Dungeon Because I DON'T KNOW! [USA, WUD]
b18cb36e3ddde626b5bba1dc33810f6e # Adventure Time Finn and Jake Investigations [EUR, WUD]
20e82ef763265e8f67dcca2fb2400935 # Adventure Time Finn and Jake Investigations [USA, WUD]
2aa9774322e92b25704b67cdc905e6e9 # Angry Birds Star Wars [EUR, WUD]
58cb15e60f95130419fe191053b3dc26 # Angry Birds Star Wars [USA, WUD]
29858aa7f788de0f391ce445f6541efd # Angry Birds Trilogy [EUR, WUD]
7ea4c6cb6c8ba6d35df143e412a80145 # Angry Birds Trilogy [USA, WUD]
@azagniotov
azagniotov / beautiful.rest.api.docs.in.markdown.md
Last active May 6, 2024 01:05
Example to create beautiful REST API docs in Markdown, inspired by Swagger API docs.