I hereby claim:
- I am tejzpr on github.
- I am tejzpr (https://keybase.io/tejzpr) on keybase.
- I have a public key ASAyqS7BrrmWS1qGZCUd1x--BNCoMgP8QHORWMe0RH6sNwo
To claim this, I am signing this object:
||organicowner.com^ | |
||003153.xyz^ | |
||ns.00dani.me^ | |
||666.020202.best^ | |
||0ms.dev^ | |
||dns.0ooo.icu^ | |
||0x3d.lu^ | |
||dns.0x55.net^ | |
||1010000.online^ | |
||108023.xyz^ |
# train_grpo.py | |
import re | |
import torch | |
from datasets import load_dataset, Dataset | |
from transformers import AutoTokenizer, AutoModelForCausalLM | |
from peft import LoraConfig | |
from trl import GRPOConfig, GRPOTrainer | |
# Load and prep dataset |
(function execute(inputs, outputs) { | |
var provider = new sn_cc.StandardCredentialsProvider(); | |
var credential = provider.getCredentialByID("credential_id"); | |
var user = credential.getAttribute("user_name"); | |
var pass = credential.getAttribute("password"); | |
var oAuthClient = new sn_auth.GlideOAuthClient(); | |
var params ={grant_type:"password", username:user, password:pass}; | |
var json = new global.JSON(); | |
var extraParams = json.encode(params); |
package main | |
import ( | |
"fmt" | |
"github.com/skratchdot/open-golang/open" | |
"net" | |
"net/http" | |
) | |
func main() { |
package main | |
import ( | |
"fmt" | |
"strings" | |
) | |
func main() { | |
fmt.Println(strstr("Hello how how are you", "How")) | |
} |
I hereby claim:
To claim this, I am signing this object:
package main | |
import "fmt" | |
func fnvHash32(key string) uint32 { | |
hash := uint32(2156825496) | |
const prime32 = uint32(16777619) | |
for i := 0; i < len(key); i++ { | |
hash *= prime32 | |
hash ^= uint32(key[i]) |
Apache License | |
Version 2.0, January 2004 | |
http://www.apache.org/licenses/ | |
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | |
1. Definitions. | |
"License" shall mean the terms and conditions for use, reproduction, | |
and distribution as defined by Sections 1 through 9 of this document. |
defaults write com.apple.dock ResetLaunchPad -bool true; killall Dock
Open a terminal and run the following commands (cd to your home directory first) | |
sudo apt install xbacklight | |
xauth generate :0 . trusted | |
xauth add ${HOST}:0 . $(xxd -l 16 -p /dev/urandom) | |
sudo vi /etc/udev/rules.d/98-backlight.rules | |
Paste the following into the 98-backlight.rules | |
################################################# START ################################### | |
# Adjust screen brightness according to power state | |
# 1st rule for when on AC | |
ACTION=="change", SUBSYSTEM=="power_supply", ATTR{type}=="Mains", ATTR{online}=="1", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/USERNAME/.Xauthority", RUN+="/usr/bin/xbacklight -set 85" |