Skip to content

Instantly share code, notes, and snippets.

import requests
from bs4 import BeautifulSoup
url = 'http://www.tntvillage.scambioetico.org/src/releaselist.php'
categorie = [{"id":"0","nome":"Tutte le categorie"},
{"id":"4","nome":"Film"},
{"id":"2","nome":"Musica"},
{"id":"29","nome":"Serie TV"},
{"id":"14","nome":"Documentari"},
{"id":"13","nome":"Students Releases"},
@Pitasi
Pitasi / skeleton.go
Created July 31, 2016 13:06
Skeleton for Telegram bots written in Go
/* https://pitasi.space/creare-un-piccolo-bot-di-telegram-usando-go/ */
package main
import (
"log"
"regexp"
"gopkg.in/telegram-bot-api.v4"
)
@Pitasi
Pitasi / AnalogClock.fsx
Created October 6, 2016 14:40
Orologio analogico
open System.Windows.Forms
open System.Drawing
let f = new Form(TopMost=true, Text="Clock", Size=Size(400, 400))
f.Show()
let pi = System.Math.PI
type AnalogClock() =
inherit UserControl()
open System.Windows.Forms
open System.Drawing
type Bottone() =
inherit UserControl()
let mutable FColor = Color.Red
let mutable SColor = Color.FromArgb(175, 0, 0, 0)
let mutable STickness = 3
let mutable LText = ""
@Pitasi
Pitasi / RettangoloArrotondato.fsx
Last active October 12, 2016 19:46
Classe per creare facilmente rettangoli (filled) con angoli smussati.
open System.Windows.Forms
open System.Drawing
let f = new Form(TopMost=true, Text="Ciao")
f.Show()
type Style = Filled | Border
type RettangoloArrotondato() =
inherit UserControl()
@Pitasi
Pitasi / hotkeys.ahk
Created July 13, 2017 16:44
Special characters shortcuts for Windows - using AutoHotKeys
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
<^>!'::Send, ``
<^>!ì::Send, ~
#if getkeystate("capslock","t")
à::SendRaw, À
@Pitasi
Pitasi / boxstarter.txt
Created August 1, 2017 11:21
boxstarter.org script
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
cinst googlechrome
cinst vlc
cinst 7zip
cinst ccleaner
cinst steam
cinst spotify
module.exports = {
// text
"i did not hit her": { type: 'text', value: 'https://www.youtube.com/watch?v=zLhoDB-ORLQ'}
// gif
"nodejs": { type: 'gif', id: 'CgADBAADLQIAAlnKaVMm_HsznW30oQI' },
// sticker
"woah": { type: 'sticker', id: 'CAADAgAD5gADJQNSD34EF_pwQMgbAg' },
}
@Pitasi
Pitasi / main.js
Last active November 6, 2017 10:29
https://anto.pt/2017/11/05/Telegram-bots-with-Node-js/ - A simple Telegram bot built with Telegraf.js
// Include Telegraf module
const Telegraf = require('telegraf');
// Create a bot using TOKEN provided as environment variable
const bot = new Telegraf(process.env.TOKEN);
// Import replies file
const replies = require('./replies')
// Extract reply_to_message.message_id field from Telegraf ctx
@Pitasi
Pitasi / settings.json
Created February 19, 2018 10:26
Visual Studio Code settings
{
"git.autofetch": true,
"editor.fontFamily": "Operator Mono Medium",
"terminal.integrated.fontFamily": "Hack",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"editor.formatOnPaste": true,