Skip to content

Instantly share code, notes, and snippets.

View logonoff's full-sized avatar
🤔

logonoff logonoff

🤔
View GitHub Profile
@logonoff
logonoff / Win10titlebar.theme.css
Last active March 21, 2024 22:55
Larger titlebar for Discord for Windows
/**
* @name Windows 10 titlebar
* @description makes the titlebar match the Windows 10 one
* @author logonoff
* @version 1.0.1
* @authorId 122505347163357186
* @source https://gist.github.com/logonoff/b8b96edc4aa977bf88ac7a31646b0e0e
* @website https://logonoff.co
*/
// ==UserScript==
// @name walm
// @namespace Violentmonkey Scripts
// @match https://www.walmart.ca/en*
// @grant none
// @version 1.0
// @icon https://i.redd.it/obtayw0te9f01.jpg
// @author -
// @description 2/26/2024, 12:36:27 AM
// ==/UserScript==
@logonoff
logonoff / Microsoft.PowerShell_profile.ps1
Created December 24, 2023 03:02
pwsh profile redirect
Push-Location "$env:userprofile\.config\powershell\"
$env:PSModulePath += ";$env:userprofile\.config\powershell\modules"
$env:Path += ";$env:userprofile\.config\powershell\session_path"
$profile = "$env:userprofile\.config\powershell\Microsoft.PowerShell_profile.ps1"
. $profile
Pop-Location
@logonoff
logonoff / compare.js
Created January 22, 2023 00:31
check who is not following you back on instagram
var rawFollowers = require("./followers.json");
var rawFollowing = require("./following.json");
const followers = rawFollowers["relationships_followers"].map( e => e["string_list_data"][0]["value"] );
const following = rawFollowing["relationships_following"].map( e => e["string_list_data"][0]["value"] );
const notFollowingBack = following.filter( e => !followers.includes(e) );
console.log(notFollowingBack);
// ==UserScript==
// @name Continue Anyway, please?
// @namespace https://logonoff.co
// @match https://remotedesktop.google.com/unsupported-browser/
// @match http://remotedesktop.google.com/unsupported-browser/
// @match https://www.remotedesktop.google.com/unsupported-browser/
// @match http://www.remotedesktop.google.com/unsupported-browser/
// @grant none
// @version 1.1.1
// @author logonoff
// ==UserScript==
// @name Hypixel Reward Skip
// @namespace https://logonoff.co/
// @version 3.0.1
// @description Auto skip Hypixel's daily reward!
// @author logonoff
// @match *://rewards.hypixel.net/*
// @downloadURL https://raw.githubusercontent.com/logonoff/userscripts/main/HypixelRewardSkip.user.js
// @updateURL https://raw.githubusercontent.com/logonoff/userscripts/main/HypixelRewardSkip.user.js
// @icon https://www.google.com/s2/favicons?sz=64&domain=hypixel.net
// ==UserScript==
// @name Turn zoommtg:// uris into proper links
// @namespace https://logonoff.co/
// @version 0.2.1
// @description Google Calendar doesn't like to link zoommtg:// URIs when they are in the description. This turns zoommtg URIs in gcal event popups clickable links
// @author logonoff
// @match https://calendar.google.com/calendar/u/0/r
// @icon https://calendar.google.com/googlecalendar/images/favicons_2020q4/calendar_24.ico
// @grant none
// @updateURL https://raw.githubusercontent.com/logonoff/userscripts/main/zoommtg_gcal.user.js
// ==UserScript==
// @name Old Gmail Logo
// @namespace https://logonoff.co/
// @version 0.2.1
// @description Make the basic HTML gmail logo the old one
// @author logonoff
// @match https://mail.google.com/mail/u/*/h/*
// @updateURL https://raw.githubusercontent.com/logonoff/userscripts/main/oldgmail.user.js
// @downloadURL https://raw.githubusercontent.com/logonoff/userscripts/main/oldgmail.user.js
// @icon data:image/gif;base64,R0lGODlhjwA7APcAAP7+/gBste/x8eDg4MMUAkSXzPj5+bEQAPP09CetUKOjo/39/QFzvNzb25OTk+3v7i2MyPr7/PC4Devr6wFlrMglFejo6M03KOLj4xiCxdpxZs3MzIuymOvj6Qh6wc5IO36gtezl4d5+dP3DENTT0yt4q75vZ/3TT9NWSv7ijdXQzXix1fn08v3LLObm5ddjV12l0uCGffPq5/HQzUqzapGls3HKjP7ZZrm5ulzBe9KyT96sE7DR5ampqb6+wJjE4NPg6vXry87S2RZ3tuWhm7GysdmoqjmGt/X5/B+fRoOCgtiSkuzo5oe621iJqeHHc/L2+cXFxIqJibhBNgBfpue4tv/gebGqk+Ts9PX19dzc3OKZkUZ/pPf396PYs8nJydrU0dXV1fz59//8+fn5+bbN3ProsZmZmZCQkDBzn87IxPnz5KKhoevETc7OzmWYuLq5uePY1+fn562trcXb6eTk5MXKz4WZpnKRpc+oL9TLxcjN08zMzPr6+vz8/Ji1xwBbnb29vczFw+/Wh/
@logonoff
logonoff / theemonths.html
Last active December 25, 2020 03:46
countdown timer to three months after next christmas
<!-- sorry. -->
<style>
body {
margin: 0;
padding: 0;
}
.container {
background: #222;
width: 100%;
height: 100vh;
// ==UserScript==
// @name search with google on bing
// @namespace https://logonoff.co/
// @version 0.3.1
// @description cause sometimes bing aint doin it
// @author logonoff
// @match https://www.bing.com/search?q=*
// @updateURL https://raw.githubusercontent.com/logonoff/userscripts/main/google_on_bing.user.js
// @downloadURL https://raw.githubusercontent.com/logonoff/userscripts/main/google_on_bing.user.js
// ==/UserScript==