This file contains 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
package main | |
type Signatures struct { | |
Sign string | |
Sufix string | |
Format string | |
} | |
var Sig = []Signatures{ | |
{`006E1EF0`, `*.ppt`, `PPT`}, |
This file contains 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
func (parser *Parser) ParserCreateAssignment() *LetStatement { | |
stmt := &LetStatement{Token: parser.CurrentToken} | |
if !parser.ExpectPeek(IDENT) { | |
return nil | |
} | |
stmt.Name = &Ident{Token: parser.CurrentToken, Value: parser.CurrentToken.Literal} | |
if !parser.ExpectPeek(ASSIGN) { | |
return nil | |
} | |
parser.NT() |
This file contains 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
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"strconv" | |
"strings" | |
) |
This file contains 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
var CurseMapExchange = map[string]string{ | |
"fuck": "fluff", | |
"shit": "sht", | |
"shit.": "sht", | |
"bullshit": "bs", | |
"bitch": "fluffin_mf", | |
"motherfucker": "mother_fluff", | |
} |
This file contains 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
package main | |
import ( | |
"bufio" | |
"bytes" | |
"encoding/base64" | |
"fmt" | |
"log" | |
"net/http" | |
"regexp" |
This file contains 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
[ | |
{ | |
"sign": "006E1EF0", | |
"suffix": "*.ppt", | |
"format": "PPT" | |
}, | |
{ | |
"sign": "A0461DF0", | |
"suffix": "*.ppt", | |
"format": "PPT" |
This file contains 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
{ | |
"United_States_Phone_Codes_And_Regions": [ | |
{ | |
"Phone_Dialcode": "772", | |
"Country_Code_I": "US", | |
"Country_Currency": "USD", | |
"Country_Lang": "English", | |
"Country_Code_Full": "United States of America", | |
"State_of_Number": "Florida", | |
"State_of_Number_Short": "FL", |
This file has been truncated, but you can view the full file.
This file contains 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
{ | |
"Code": 1000, | |
"LogicalServers": [ | |
{ | |
"Name": "IS#1", | |
"EntryCountry": "IS", | |
"ExitCountry": "IS", | |
"Domain": "node-is-01.protonvpn.net", | |
"Tier": 2, | |
"Features": 4, |
This file contains 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
some file |
This file contains 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
#pragma once | |
#include <string> | |
#include <utility> | |
namespace | |
{ | |
constexpr int const_atoi(char c) | |
{ | |
return c - '0'; | |
} |
OlderNewer