- Multivitamin
- Vitamin D
- Whey Protein
- Creatine
- Fish Oil
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 8 LOUD accent escape codes | |
| R=$'\033[31m' | |
| O=$'\033[38;5;16m' | |
| Y=$'\033[33m' | |
| G=$'\033[32m' | |
| C=$'\033[36m' | |
| B=$'\033[34m' | |
| P=$'\033[35m' | |
| L=$'\033[38;5;17m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # check.sh - Supply Chain Exposure Checker | |
| # Checks for known-bad versions of litellm, axios, and plain-crypto-js | |
| # If no directories are given, scans $HOME. | |
| # | |
| # These are two separate incidents: | |
| # LiteLLM: March 24, 2026 — compromised PyPI releases 1.82.7 and 1.82.8 | |
| # Axios: March 31, 2026 — compromised npm releases 1.14.1 and 0.30.4 | |
| # with malicious dep plain-crypto-js@4.2.1 | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| # let's fuck around! | |
| weights = [random.uniform(-1, 1) for _ in range(3)] | |
| # "out" (ground truth we want to find) | |
| target = [ord(c) for c in "out"] # ASCII values of 'o', 'u', 't' | |
| # rate of fucking around | |
| learning_rate = 0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
| import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | |
| import "@identity.com/gateway-protocol-eth/contracts/Gated.sol"; | |
| import "./MasterNodeFundCertificate.sol"; | |
| contract MasterNodeFund is Gated, MasterNodeFundCertificate { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.9; | |
| import {IGatewayTokenVerifier} from "./interfaces/IGatewayTokenVerifier.sol"; | |
| contract Gated { | |
| address private _gatewayTokenContract; | |
| uint256 private _gatekeeperNetwork; | |
| /// The gateway token is not valid. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // set the site we are modifying | |
| const site = 'www.example.com'; | |
| // do this on a fetch | |
| addEventListener('fetch', event => { | |
| const request = event.request | |
| const url = new URL(request.url) | |
| event.respondWith(handleRequest(request)) | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // was | |
| if (isEmbedsLoading && !isEmbedsLoading) { | |
| this.handleResetLocalChanges(); | |
| } | |
| // probably the intended | |
| if (isEmbedsLoading && !prevProps.isEmbedsLoading) { | |
| this.handleResetLocalChanges(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getPageName(url) { | |
| var index = url.lastIndexOf("/") + 1; | |
| var filenameWithExtension = url.substr(index); | |
| var filename = filenameWithExtension.split(".")[0]; | |
| return filename; | |
| } | |
| var url = window.location.href; | |
| var fileName = getPageName(url); |
NewerOlder