Skip to content

Instantly share code, notes, and snippets.

View taciturnaxolotl's full-sized avatar
:bowtie:
Cooking up a new idea to get obsessed over for a week

Kieran Klukas taciturnaxolotl

:bowtie:
Cooking up a new idea to get obsessed over for a week
View GitHub Profile

g.co, Google's official URL shortcut (update: or Google Workspace's domain verification, see bottom), is compromised. People are actively having their Google accounts stolen.

Someone just tried the most sophisticated phishing attack I've ever seen. I almost fell for it. My mind is a little blown.

  1. Someone named "Chloe" called me from 650-203-0000 with Caller ID saying "Google". She sounded like a real engineer, the connection was super clear, and she had an American accent. Screenshot.

  2. They said that they were from Google Workspace and someone had recently gained access to my account, which they had blocked. They asked me if I had recently logged in from Frankfurt, Germany and I said no.

  3. I asked if they can confirm this is Google calling by emailing me from a Google email and they said sure and sent me this email and told me to look for a case number in it, which I saw in

@taciturnaxolotl
taciturnaxolotl / slack-watermark.js
Created December 12, 2024 03:30
Watermark your messages in slack via Proxypin
console.log("Request handler started");
async function onRequest(context, request) {
console.log("Incoming request:", context);
if (!context.session.channelHistory) {
context.session.channelHistory = [];
}
const k = JSON.parse(request.body);
@iliketwertles
iliketwertles / nvidia.md
Created August 29, 2022 22:56
nvidia+hyprland/wayland guide

First of all this is no where near a cure-all or universal guide, this is just my experience with my specific card and system. This is what has gotten my MSI 1650 Super Gaming X gpu (probably overly specific lol) to work on hyprland, not sure if this works on any other wayland compositors but i assume it would work for sway, newm, etc

Anyways lets start with a basic arch install with the regular kernel and some basic packages including but not limited to: dkms, base-devel, git, yay, etc

Next is to get nvidia stuff figured out, if your card is supported, use nvidia-open-dkms, if not, nvidia-dkms. Then ensure nvidia modules are in the MODULES= section of mkinitcpio like this (MODULES="nvidia nvidia_drm nvidia_modeset nvidia_uvm") then running: "mkinitcpio -P". I suggest making a packman hook to rebuild initramfs whenever either 'linux' (kernel) or nvidia-open-dkms

@impressiver
impressiver / slack_emoji_map.json
Created December 23, 2020 00:31
Slack emoji 2020-12-22
[
{ "name": "1234", "unicode": "1f522", "id": "E1f522", "keywords": ["1234", "input", "numbers"] },
{ "name": "hash", "unicode": "0023-fe0f-20e3", "id": "E0023-fe0f-20e3", "keywords": ["symbol"] },
{ "name": "keycap_star", "unicode": "002a-fe0f-20e3", "id": "E002a-fe0f-20e3", "keywords": [] },
{ "name": "zero", "unicode": "0030-fe0f-20e3", "id": "E0030-fe0f-20e3", "keywords": ["number", "0"] },
{ "name": "one", "unicode": "0031-fe0f-20e3", "id": "E0031-fe0f-20e3", "keywords": ["number", "1"] },
{ "name": "two", "unicode": "0032-fe0f-20e3", "id": "E0032-fe0f-20e3", "keywords": ["number", "2"] },
{ "name": "three", "unicode": "0033-fe0f-20e3", "id": "E0033-fe0f-20e3", "keywords": ["number", "3"] },
{ "name": "four", "unicode": "0034-fe0f-20e3", "id": "E0034-fe0f-20e3", "keywords": ["number", "4"] },
{ "name": "five", "unicode": "0035-fe0f-20e3", "id": "E0035-fe0f-20e3", "keywords": ["number", "5"] },
@inca
inca / Hex.cs
Last active April 28, 2024 06:42
[Unity] Simple Hex Grid System
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
public static class HexVectorExtensions {
public static Vector2 WorldToPlanar(this Vector3 world) {
return new Vector2(world.x, world.z);
}
@frfahim
frfahim / oh-my-fish.md
Last active October 7, 2025 13:27
Install fish shell and oh-my-fish on ubuntu

First install fish shell on your system

sudo apt-get update
sudo apt-get install fish

Or install fish via ppa

sudo apt-add-repository ppa:fish-shell/release-2
sudo apt-get update

sudo apt-get install fish``