((crypt) => {
const rot13 = c => {
c = c.codePointAt(0);
let d = c + 13;
if (d > (c <= 90 ? 90 : 122)) {
d -= 26;
}
return String.fromCodePoint(d);
}
const backwards = s => s.split("").reverse().join("");
return backwards(crypt.replace(/[a-z]/gi, rot13));
})("zbp.tavferbqunba@vu");Highlights
- Arctic Code Vault Contributor
- Pro
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPinned
716 contributions in the last year
Activity overview
Contribution activity
December 2020
November 2020
Created 50 commits in 11 repositories
Created 4 repositories
- doersino/urpflanze JavaScript
- doersino/espree JavaScript
- doersino/tixy JavaScript
- doersino/tixyz JavaScript
Created a pull request in aemkei/tixy that received 3 comments
A few small fixes
I noticed these while was merging some of the recent changes into tixyz:
The high-res favicons src/assets/android-chrome-192x192.png and src/asset…
Opened 2 other pull requests in 2 repositories
genbs/urpflanze
1
merged
eslint/espree
1
merged
Created an issue in aemkei/tixy that received 1 comment
License?
Hiya! I've spent a good half an hour playing around with tixy, which has made me interested in how adding a third dimension to the party would swit…