Skip to content

Instantly share code, notes, and snippets.

View ubinix-warun's full-sized avatar
🎯
Focusing

Warun C. ⚡ ubinix-warun

🎯
Focusing
View GitHub Profile
system_object: 0x98ebc47370603fe81d9e15491b2f1443d619d1dab720d586e429ed233e1255c1
staking_object: 0x20266a17b4f1a216727f3eef5772f8d486a9e3b5e319af80a5b75809c035561d
exchange_objects:
- 0x59ab926eb0d94d0d6d6139f11094ea7861914ad2ecffc7411529c60019133997
- 0x89127f53890840ab6c52fca96b4a5cf853d7de52318d236807ad733f976eef7b
- 0x9f9b4f113862e8b1a3591d7955fadd7c52ecc07cf24be9e3492ce56eb8087805
- 0xb60118f86ecb38ec79e74586f1bb184939640911ee1d63a84138d080632ee28a
@ubinix-warun
ubinix-warun / diy-projects.md
Last active July 17, 2024 14:24
DIY projects (Open-source hardware) for RISC-V, Hardware Wallets, and FPGA.

DIY Projects: RISC-V, Hardware Wallets, and FPGA.

Focus: DIY projects (Open-source hardware) for RISC-V, Hardware Wallets, and FPGA.

Projects:

  • Goal: Create an affordable, air-gapped Bitcoin signing device using a Raspberry Pi Zero
  • Key Tech: Raspberry Pi Zero: Low-cost, single-board computer
  • Air-gapped: Secure, offline environment for signing transactions
  • Features:
  • Transaction signing

Suivents 🎫 -- 🌊 Revolutionizing Event Ticketing on the Sui Blockchain.

Suivents is not just a platform; it's a movement towards a more immersive, interactive, and rewarding event experience.

By leveraging the power of dynamic NFTs and on-chain rendering, Suivents is setting a new standard for event ticketing on the Sui blockchain.

Successfully verified dependencies on-chain against source.
Transaction Digest: J7k16aNuVjErK631CNhHR5upoN2u1FF7aHXfPMQmBBh4
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Transaction Data │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ Sender: 0x38e401220cb25b1f46c513fdf97a487fb7bfc186dbfd923fa70ea2641d2ef398 │
│ Gas Owner: 0x38e401220cb25b1f46c513fdf97a487fb7bfc186dbfd923fa70ea2641d2ef398 │
│ Gas Budget: 100000000 MIST │
│ Gas Price: 1000 MIST │
│ Gas Payment:
module metaschool::pepe {
use std::option;
use sui::coin;
use sui::transfer;
use sui::tx_context::{Self, TxContext};
// Name matches the module name but in UPPERCASE
public struct PEPE has drop {}
// Module initializer is called once on module publish.
// Copyright (c) 2022, Sui Foundation
// SPDX-License-Identifier: Apache-2.0
/// A basic Hello World example for Sui Move, part of the Sui Move intro course:
/// https://github.com/sui-foundation/sui-move-intro-course
///
module hello_world::hello_world {
use std::string;
use sui::object::{Self, UID};
Generate a personalized morning fitness routine based on my fitness level, time availability, and specific goals

fitness level: beginner
time availability: 20 mins
goals: core
preferences or limitations: no equipment, no lunge or jumping 

import { Hono } from 'hono'
import type { Callback, CloudFrontRequest } from 'hono/lambda-edge'
import { handle } from 'hono/lambda-edge'
type Bindings = {
callback: Callback
request: CloudFrontRequest
}
const app = new Hono<{ Bindings: Bindings }>()
import * as cdk from 'aws-cdk-lib';
import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs';
import * as lambda from 'aws-cdk-lib/aws-lambda';
import * as logs from 'aws-cdk-lib/aws-logs';
import * as destinations from 'aws-cdk-lib/aws-logs-destinations';
import { Construct } from 'constructs';
export class CloudwatchLineNotifyStack extends cdk.Stack {
public readonly watchFn: lambda.Function;