- Multivitamin
- Vitamin D
- Whey Protein
- Creatine
- Fish Oil
This file contains 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 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 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 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 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 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 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); |
This file contains 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
// this is @Lukeed's 'sublet' with some small changes to allow for automatic dependency tracking as well as | |
// explicit registering of change effects | |
// prob should use a weakMap for these | |
const reactionsMap = {}; | |
const contextMap = {}; | |
let ctx; | |
export const setContext = id => { | |
ctx = id; |
- multiple timer events on promo cards
- screen from wallet to profile doing that weird dance
- wallet graph being visible on the profile screen
- graph date selectors being visible when transactions are extended ( that is actually according to the mockup, but I had planned to fix that)
- smooth out transactions extending thing
NewerOlder