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
<?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
#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(""); | |
} |