Skip to content

Instantly share code, notes, and snippets.

@khenzarr
khenzarr / contracts...khenzar.sol
Created April 3, 2025 18:45
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.20+commit.a1b79de6.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract KHENZARMemeMarketplace {
struct Meme {
address creator;
string content;
uint256 creationTime;
uint256 price;
uint256 ratingScore;
@rsp
rsp / node-ts-hello-adventures.md
Last active April 3, 2025 18:44
Creating and using a Node library with TypeScript

node-ts-hello adventures

This is what I was really doing while creating an example from this answer on Stack Overflow:

It turned out that I made several stupid mistakes and wasted a lot more time than it might look like from reading the answer. I eventually removed from the answer not so much out of embarrassment but because I didn't want to be accused that I am complicating the process on purpose to make Deno look better in comparison. The truth is that below ius exactly what I did while trying to create and publish a new module on npm written in TypeScript and use it with ts-node later:

https://github.com/rsp/node-ts-hello

@derpblerf02
derpblerf02 / index.html
Created April 3, 2025 18:41
onScroll responsive scope
<section class="spacer"></section>
<section class="sticky-container">
<div class="sticky-content">
<div class="stack">
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
@t3dotgg
t3dotgg / try-catch.ts
Last active April 3, 2025 18:40
Theo's preferred way of handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = {
data: T;
error: null;
};
type Failure<E> = {
data: null;
error: E;
};
@derpblerf02
derpblerf02 / index.html
Last active April 3, 2025 18:40
onScroll sticky
<section class="spacer"></section>
<section class="sticky-container">
<div class="sticky-content">
<div class="stack">
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
<div class="card"><div class="front"></div><div class="back"></div></div>
@thecodingcod
thecodingcod / dbeaver_sqlcipher.md
Last active April 3, 2025 18:39
Setting up Dbeaver (The Universal DBMS) to work with SqlCipher Databases

Setting up Dbeaver (The Universal DBMS) to work with SqlCipher Databases

I’ve tried multiple solutions to browse SqlCipher Databases and the only one that seemed to work properly was [DB Sqlite Browser](DB Browser for SQLite (sqlitebrowser.org)) with easy GUI to get into the db. but … the overall experience of that application didn’t really satisfy me!

I knew DBeaver from long time ago, and i wondered if i can use it with SQLCipher, but it was surprisingly a shock that it doesn’t work directly, but with a couple of hours of researching and trying different methods i finally came up with a way to configure it Out-of-the box to make it work!

The reason I wrote this gist was to help others who have the same issue as it seems there is no guide to show how to do so!

@ciiqr
ciiqr / zod-optional-null.ts
Last active April 3, 2025 18:39
zod optional/nullable/nullish differences
// zod schema
z.object({
// valid if string or:
optional: z.string().optional(), // field not provided, or explicitly `undefined`
nullable: z.string().nullable(), // field explicitly `null`
nullish: z.string().nullish(), // field not provided, explicitly `null`, or explicitly `undefined`
});
// type
{
@chetan
chetan / yardoc_cheatsheet.md
Last active April 3, 2025 18:35
YARD cheatsheet
@phansch
phansch / yardoc_cheatsheet.md
Last active April 3, 2025 18:35 — forked from chetan/yardoc_cheatsheet.md
Improved YARD cheatsheet