Text(talkModel.promptText)
.font(.title)
.padding()
.frame(maxWidth: .infinity)
.background(.ultraThinMaterial)
.foregroundColor(Color(UIColor.label))
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
# 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 |
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 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() |
# 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
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:
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
int LEFT = A0; | |
int RIGHT = A1; | |
int SERVO_MAX = 180.0; | |
int x_max; | |
int y_max; | |
Servo lt_servo; | |
Servo rt_servo; |
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
# 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 |
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
Meteor.Router.add({ | |
'/posts': 'posts', | |
'/posts/:id': function(id) { | |
Session.set('postId'); | |
return 'post'; | |
}, | |
'/authors/:id': function(id) { | |
Session.set('authorId', id); | |
return 'author'; | |
} |
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
// From http://front-end-testing-talk.elabs.se/ | |
// Seen at RailsConf 2011 | |
// Typical jQuery | |
$('#whiskies li').each(function() { | |
var li = $(this); | |
var price = li.attr('data-price'); | |
var addLink = $('<a class="add-to-cart" href="#">Add to cart</a>'); | |
addLink.appendTo(li); |
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
class Parent | |
include Mongoid::Document | |
field :pants | |
field :shirts | |
embeds_many :children | |
end | |
class Child | |
include Mongoid::Document |
NewerOlder