Skip to content

Instantly share code, notes, and snippets.

import time
from datetime import timedelta
from datasets import load_dataset
from txtai import LLM
from txtai.pipeline import Labels, HFTrainer
def prompt(text):
text = f"""
@evrial
evrial / key.md
Created February 4, 2023 07:54
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

@evrial
evrial / translate.py
Created March 26, 2022 08:01
Google translate
#!/Users/evrial/anaconda3/envs/base/bin/python3.7
# -*- coding: utf-8 -*-
import argparse
from deep_translator import GoogleTranslator
from deep_translator.exceptions import LanguageNotSupportedException
def main():
parser = argparse.ArgumentParser(
description='Python Google Translator as a command-line tool')
parser.add_argument('text', help='The text you want to translate.')
- word2vec https://arxiv.org/abs/1310.4546
- sentence2vec, paragraph2vec, doc2vec http://arxiv.org/abs/1405.4053
- tweet2vec http://arxiv.org/abs/1605.03481
- tweet2vec https://arxiv.org/abs/1607.07514
- author2vec http://dl.acm.org/citation.cfm?id=2889382
- item2vec http://arxiv.org/abs/1603.04259
- lda2vec https://arxiv.org/abs/1605.02019
- illustration2vec http://dl.acm.org/citation.cfm?id=2820907
- tag2vec http://ktsaurabh.weebly.com/uploads/3/1/7/8/31783965/distributed_representations_for_content-based_and_personalized_tag_recommendation.pdf
- category2vec http://www.anlp.jp/proceedings/annual_meeting/2015/pdf_dir/C4-3.pdf
@evrial
evrial / README
Last active May 3, 2016 17:08 — forked from rhamdeew/README
rhamdeew/lamp description
1. sudo docker pull rhamdeew/lamp
2. sudo docker run -v /your_empty_project_path/:/var/www/srv/ -p 80:80 -t -i rhamdeew/lamp /bin/bash
3. in container: cp -R /var/www/example/* /var/www/srv
4. in container: cd /var/www/srv/
5. in container: ./start.sh
6. open http://localhost/1.php
Your project structure
projectname/
@evrial
evrial / snowden-ietf93.md
Created February 2, 2016 10:59 — forked from mnot/snowden-ietf93.md
Transcript of Edward Snowden's comments at IETF93.
package main
import (
"fmt"
)
func Sqrt(x float64) float64 {
z := x / 2.0
for i := 0; i < 10; i++ {
z = z - (z*z-x)/(2*z)

Keybase proof

I hereby claim:

  • I am evrial on github.
  • I am evrial (https://keybase.io/evrial) on keybase.
  • I have a public key whose fingerprint is D5DC 7517 5592 BDA1 BDEF 391E BCFA E76D 4105 87A8

To claim this, I am signing this object:

@evrial
evrial / nginx.conf
Last active September 1, 2015 18:03 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@evrial
evrial / .A how to display Irssi-hilights in OS X Notification Center.md
Last active September 1, 2015 18:03 — forked from prebenlm/.A how to display Irssi-hilights in OS X Notification Center.md
Guide: how to make irc messages in a screen on a remote server appear in your Mac OS X Lion Notification Center with the help of terminal-notifier

Irssi in Mac OS X Notification Center

Mou icon

Overview

This guide will explain how you can make irc messages in a screen on a remote server appear in your Mac OS X Lion Notification Center with the help of terminal-notifier.

We will also explain how the process can be automatically started each time you log in to your Mac and ensure the connection to the server is kept alive.