Skip to content

Instantly share code, notes, and snippets.

@kasima
kasima / final_rankings.md
Created October 15, 2025 08:31
Nowcast experiments summaries (phase1..5, samples) and recommendations

Benchmark Leaderboard

Sources:

  • nowcast/experiments/results/phase1/summary.csv
  • nowcast/experiments/results/phase2/summary.csv
  • nowcast/experiments/results/phase3/summary.csv
  • nowcast/experiments/results/phase4/summary.csv
  • nowcast/experiments/results/phase5/summary.csv

Lead 10 minutes

@kasima
kasima / final_rankings.md
Created October 15, 2025 08:27
Nowcast experiments summaries and recommendations (pysteps vs extrapolation)

Benchmark Leaderboard

Sources:

  • nowcast/experiments/results/phase1/summary.csv
  • nowcast/experiments/results/phase2/summary.csv
  • nowcast/experiments/results/phase3/summary.csv
  • nowcast/experiments/results/phase4/summary.csv
  • nowcast/experiments/results/phase5/summary.csv

Lead 10 minutes

@kasima
kasima / capabilities.txt
Created March 10, 2025 01:34 — forked from jlia0/agent loop
Manus tools and prompts
# Manus AI Assistant Capabilities
## Overview
I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries.
## General Capabilities
### Information Processing
- Answering questions on diverse topics using available information
- Conducting research through web searches and data analysis
@kasima
kasima / swiftui_cheat_sheet.md
Last active May 28, 2023 05:31
SwiftUI Styling Cheat Sheet

Styling Text

Text(talkModel.promptText)
    .font(.title)
    .padding()
    .frame(maxWidth: .infinity)
    .background(.ultraThinMaterial)
    .foregroundColor(Color(UIColor.label))
@kasima
kasima / convert_safetensors_to_ckpt.py
Created January 5, 2023 15:14
Convert safetensors to ckpt – not working
import argparse
import torch
from safetensors.torch import load_file
def save_checkpoint(weights, filename):
with open(filename, "wb") as f:
torch.save(weights, f)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
@kasima
kasima / solidity-0_4_18-osx-highsierra.md
Last active April 10, 2018 07:20
Building solidity 0.4.18 on Mac OS X 10.13 (High Sierra)

Building solidity 0.4.18 on Mac OS X 10.13 (High Sierra)

# check out [email protected]
git clone https://github.com/ethereum/solidity.git
cd solidity
git checkout v0.4.21

# install deps
./scripts/install_deps.sh

Keybase proof

I hereby claim:

  • I am kasima on github.
  • I am kasima (https://keybase.io/kasima) on keybase.
  • I have a public key whose fingerprint is AB4E 1E84 1C7A D4F1 A073 A085 494F A252 6107 D628

To claim this, I am signing this object:

@kasima
kasima / gist:7847711
Created December 7, 2013 19:52
Crappybot
int LEFT = A0;
int RIGHT = A1;
int SERVO_MAX = 180.0;
int x_max;
int y_max;
Servo lt_servo;
Servo rt_servo;
@kasima
kasima / nest.coffee
Created December 14, 2012 22:53
hubot, make it cozy
# Description:
# Control your nest thermostat.
#
# Commands:
# hubot how (warm|cold) is it - current temperature
# hubot it's warm - set the nest 1 degree Fahrenheit lower
# hubot it's cold - set the nest 1 degree Fahrenheit higher
# hubot nest status - current nest setting
# https://github.com/kasima/nesting
@kasima
kasima / currently.js
Created November 29, 2012 07:33
Meteor.Router with and without session params
Meteor.Router.add({
'/posts': 'posts',
'/posts/:id': function(id) {
Session.set('postId');
return 'post';
},
'/authors/:id': function(id) {
Session.set('authorId', id);
return 'author';
}