Skip to content

Instantly share code, notes, and snippets.

@Facni
Facni / Hypothesidian.js
Created May 5, 2024 01:29 — forked from chrisaldrich/Hypothesidian.js
Hypothes.is - retrieve your annotations into Obsidian (for templater plugin)
<%*
/*
# Hypothes.idian a templater script for retrieving annotations from Hypothes.is
Original Dev: TfTHacker https://github.com/TfTHacker
Fork Dev: chrisaldrich https://github.com/chrisaldrich
This Fork Dev: Facni https://github.com/Facni
# Prerequisites:
+ Templater plugin by https://github.com/SilentVoid13/Templater
+ Free Hypothes.is developer token from: https://hypothes.is/account/developer
@superskirv
superskirv / Civitai Image Highlight Remover.user.js
Last active May 5, 2024 01:28
Civitai Image Highlight Remover: Removes glowing border around images.
// ==UserScript==
// @name Civitai Image Highlight Remover
// @namespace https://civitai.com/user/superskirv
// @version 0.2b
// @description This isnt universal... working on that. Removes glowing border around images. Reload page to remove border. Updated list of users, Im lazy and havent made this global yet.
// @author Super.Skirv and ChatGPT 3.5
// @match https://civitai.com/*
// @icon https://civitai.com/images/android-chrome-192x192.png
// @grant none
// ==/UserScript==
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created May 5, 2024 01:14
klayout v0.29.1 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-4052470390-3226813249-2593596705-1000</user>
<keys>
<key installerType="Unknown" displayName="Klayout - Layout Viewer And Editor" displayVersion="0.29.1">
<RegistryView>Registry32</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KLayout</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[]]></InstallLocation>
<UninstallString><![CDATA[C:\Program Files (x86)\KLayout\klayout-uninstall.exe]]></UninstallString>
@wh0th3h3llam1
wh0th3h3llam1 / colorful_output.bat
Created October 15, 2021 13:36
Colorful output on Python/Bash/Batch/PowerShell
@echo off
echo Gray
echo Red
echo Green
echo Yellow
echo Blue
echo Magenta
echo Cyan
echo White
@Vaduz
Vaduz / gist:5fbfd6ac651c371148bd9dc3a7a329b3
Created August 28, 2016 15:04
recursively convert iso file to mkv by using handbrakecli in windows
gci . *.ISO -R | ForEach-Object { $input = $_.FullName; $newfile = "E:\ISOs\" + $_.BaseName + ".mkv"; &"C:\Program Files\HandBrake\HandBrakeCLI.exe" -i "$input" -o "$newfile" --preset "High Profile" }
@ondrek
ondrek / gist:7413434
Created November 11, 2013 13:48
Smallest Base64 image
data:image/gif;base64,R0lGODlhAQABAAAAACw=
@naosim
naosim / renameGitBranch.md
Last active May 5, 2024 01:14
ローカルとリモートのブランチ名を変更する

#ローカルとリモートのブランチ名を変更する

以下、ブランチ名を hoge から foo に変更する例

  • ローカルのブランチ名変更
git branch -m hoge foo
  • リモートのブランチを消す
package io.zealab.kvaft.util;
import lombok.NonNull;
import java.util.Arrays;
/**
* Base N codec
*
* @author leonwong
@dario-zubovic
dario-zubovic / SimplexNoise2D.hlsl
Last active May 5, 2024 01:07
HLSL Simplex noise 2D
// based on https://github.com/keijiro/NoiseShader/blob/master/Assets/GLSL/SimplexNoise2D.glsl
// which itself is modification of https://github.com/ashima/webgl-noise/blob/master/src/noise3D.glsl
//
// License : Copyright (C) 2011 Ashima Arts. All rights reserved.
// Distributed under the MIT License. See LICENSE file.
// https://github.com/keijiro/NoiseShader/blob/master/LICENSE
// https://github.com/ashima/webgl-noise
// https://github.com/stegu/webgl-noise
float3 mod289(float3 x) {
@comefrombottom
comefrombottom / Main.cpp
Created May 5, 2024 00:58
電撃エッフェクトのhlslシェーダサンプル(Siv3D)
# include <Siv3D.hpp>
struct Electrification {
Float2 scale;
float time;
float speed;
uint32 octaves;
};
void Main() {