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
#include <iostream> | |
using namespace std; | |
void blankCard(char team, char sign){ | |
//void blankCard(){ | |
cout | |
<<(char)218 | |
<<(char)196 | |
<<(char)196 | |
<<(char)191 | |
<<"\n" |
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
▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓ | |
▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓ | |
▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒ | |
▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒ | |
▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓ | |
▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓ | |
▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒ | |
▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒ | |
▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓ | |
▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▓▓▓▓ |
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
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
//for(int i=0;i<2550;i++) | |
for(int i=0;i<255;i++) | |
cout <<i<<" : "<< (char)i <<endl; | |
//cout <<(char)i; | |
return 0; | |
} |
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
#include <iostream> | |
using namespace std; | |
template <typename customType> class MatrixCell{ | |
public: | |
MatrixCell* NEXT=NULL; | |
customType* value=NULL; | |
MatrixCell(){ | |
this->value=new customType; |
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
<?php | |
/* | |
** ###### Names Of Odin v1.0.0 ###### (previously published as repository) | |
** by Sett Sarverott @ 2018 | |
** MIT Licence | |
*/ | |
class namesGenotype{ | |
private $nameslength; | |
private $nameseed=[]; | |
public $namesspace=array(); |
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
/* Sett Sarverott @ 2021 */ | |
var d="YT-playlist."; | |
var pl=""; | |
var z=window.location.href.split("?")[1].split("&"); | |
for(var i in z) | |
if( | |
z[i].split("=")[0]=="list" | |
) | |
pl=z[i].split("=")[1]; | |
d+=pl+".txt\n\n~~~~~~\n"; |
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
/* Sett Sarverott @ 2021 */ | |
var d="YT-mixtape."; | |
var z=window.location.href.split("?")[1].split("&"); | |
for(var i in z) | |
if( | |
z[i].split("=")[0]=="v" | |
) | |
d+=z[i].split("=")[1]+"."; | |
d+="txt\n\n~~~~~~\n"; | |
var y=document.getElementsByTagName("yt-formatted-string"); |
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
/* Sett Sarverott @ 2021 */ | |
function camelCaser(name, spliter="-"){//camelCaser("namespace-helpers")=="namespaceHelpers" | |
name=name.split(spliter); | |
for(var i in name){ | |
if(i!=0){ | |
name[i]=name[i].charAt(0).toUpperCase()+name[i].slice(1).toLowerCase(); | |
} | |
} | |
return name.join(""); | |
} |
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
const express=require('express'); | |
const johnnyFive=require("johnny-five"); | |
const app=express(); | |
const port=3000; | |
const board=new johnnyFive.Board({port:"COM8"}); | |
class AnubisLightsControll{ | |
constructor(name,pin){ | |
this.pin=pin; | |
this.name=name; |
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
/* | |
ipac-maco.js | |
Sett Sarverott | |
2020 | |
*/ | |
function ipacCoding(ipAddress){ | |
//console.log(ipAddress); | |
var cryptoip=[]; | |
ipAddress.split(".").forEach(function(data){ |