Skip to content

Instantly share code, notes, and snippets.

@numerarys
numerarys / unfollow.js
Created September 9, 2024 13:52 — forked from ntfargo/unfollow.js
BlueSky | Unfollow All
/*
You need create .env file with the following variables:
BSKYHANDLE=yourhandle
BSKYPASS=yourpass
*/
const {
BskyAgent
} = require('@atproto/api');
require('dotenv').config();
@numerarys
numerarys / tir-proto.proto
Created September 9, 2024 13:51 — forked from ntfargo/tir-proto.proto
Created for Tir Project [Rust gRPC]
syntax = "proto3";
package tir;
service TirService {
rpc GenerateKnowledge (EmptyRequest) returns (Thematics);
rpc EvaluateAnswer (EvaluateRequest) returns (Answer);
rpc CorrectExplanation (CorrectionRequest) returns (EmptyResponse);
}
@numerarys
numerarys / tir-proto.proto
Created September 9, 2024 13:50 — forked from ntfargo/tir-proto.proto
Created for Tir Project [Rust gRPC]
syntax = "proto3";
package tir;
service TirService {
rpc GenerateKnowledge (EmptyRequest) returns (Thematics);
rpc EvaluateAnswer (EvaluateRequest) returns (Answer);
rpc CorrectExplanation (CorrectionRequest) returns (EmptyResponse);
}