add the following to your settings.json
{
"terminal.integrated.profiles.linux": {
"tmux": {
# install dependencies | |
npm i commander onnxruntime-node @xenova/transformers \ | |
node-record-lpcm16 webrtcvad @xenova/whispercpp \ | |
ws @google/generative-ai node-fetch | |
# export keys | |
export GEMINI_API_KEY="AIza..." # required | |
export OPENAI_API_KEY="sk-..." # only if provider=openai | |
# ▶ default (hybrid) |
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
# run using ```rvm jruby-1.6.7 do jruby "-J-Xmx2000m" "--1.9" tej.rb``` | |
require 'rubygems' | |
require 'nokogiri' | |
require 'csv' | |
f = File.open("/tmp/preview.html") | |
doc = Nokogiri::HTML(f) | |
csv = CSV.open("/tmp/output.csv", 'w',{:col_sep => ",", :quote_char => '\'', :force_quotes => true}) |
[rdp] enabled = true filter = rdp action = iptables-multiport[name=rdp, port="3389,3390,3391", protocol=tcp] logpath = /var/log/xrdp.log maxretry = 5
filter filter.d/rdp.conf
[Definition]
We propose the development of an Android application that leverages WebAuthn, SIMD48 processing, and Solana's multi-signature capabilities to create a secure and user-friendly Finternet browser. This browser will enable anyone to open ecommerce websites, process Finternet WebAuthn requests using the device's fingerprint sensor, and complete transactions through a Solana multi-sig contract.
The ideal finternet checkout flow on a browser would be :
# DOCKER-VERSION 1.0 | |
# run with curl <gist path> | docker build -t sandys/rbenv - | |
#when exiting/stopping a container it remains in the filesystem | |
#every time we run docker run a new container is created | |
#https://github.com/dotcloud/docker/issues/3258 | |
#stop all containers docker stop $(docker ps -a -q) | |
#rm all containers docker rm $(docker ps -a -q) |
# | |
... import xgboost.sklearn as xgb | |
... from sklearn.model_selection import GridSearchCV | |
... from sklearn.model_selection import TimeSeriesSplit | |
... | |
... cv = 2 | |
... | |
... trainX= [[1], [2], [3], [4], [5]] | |
... trainY = [1, 2, 1, 2, 1] |