This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* https://pitasi.space/creare-un-piccolo-bot-di-telegram-usando-go/ */ | |
| package main | |
| import ( | |
| "log" | |
| "regexp" | |
| "gopkg.in/telegram-bot-api.v4" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"}, |
NewerOlder