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
<?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
#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
#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
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββ |
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
<?php | |
/* | |
prime numbers finder | |
Sett Sarverott 2018 | |
*/ | |
function prime_number($zakresowa=100){ | |
$ret=[]; | |
for($i=1;$i<$zakresowa;$i++){ | |
$flag=true; | |
for($j=1;$j<count($ret);$j++){ |
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
/* | |
prime number finder | |
Sett Sarverott 2022 | |
*/ | |
function primeNumber(zakresowa=100, withFinderShift=false){ | |
var ret=[]; | |
var i=0; | |
while(zakresowa-(++i)){ | |
var flag=true; | |
for(var j in ret) |
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
/* | |
matrix rotation | |
Sett Sarverott @ 2019 | |
*/ | |
#include <iostream> | |
using namespace std; | |
int **transpos(int **tab){ | |
int sizeX=sizeof(tab)/sizeof(tab[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
;asmWorm - self-replication code in assembler for Intel 8080 | |
;Sett Sarverott @ 2022 | |
lxi h, 0000h ;start read | |
lxi d, 002fh ;stop read/start write | |
mvi c, 2fh ;length | |
mvi a, 00h ;index | |
replicator: | |
;copy this code to space after this code | |
mov b, m ;b=*read_pointer | |
xchg |