This file contains hidden or 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
| import State from '/js/statemanager.js' | |
| import settings from '/js/settings.js' | |
| class Renderer { | |
| constructor(settings) { | |
| this.pixelSize = 6 | |
| this.sceneWidth = 320 | |
| this.lastrender = null | |
| this.background = null | |
| this.layerset = [] |
This file contains hidden or 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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS536ziOftgr9BZz1VbNAovC0hhRJqdFTq9yN0TTkYKZBK2ovcUU9fIHxJ2aXgEBIeCXSEldwmOQMkaB3uSa+nsz1pAX/WhU18KBDs9/M5JcW4AfeaIrfjzDWRCy9+j98qlaC7UoYekfT7qHZ0uxG7UgupHnEVNFw9ST/NV6BRG2BFTL20MEc78Oq8GlHbr4YPX3DxmcYRgviTWebsHhdH7jvl3IMqUo7wIzbwuv56JlZK/AuqziYYbg5+XLUc7PeZRlJt9BCnggHc8YsagqGx/YyGUSpHtp813pKdMZ1hI4ba1HOKWSVxEOlyDuEkLiWArRHfdLu9MZSkn3sRYS45 nuketibet@gmail.com |
This file contains hidden or 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
| f = open('/usr/share/dict/words') | |
| words = f.readlines() | |
| f.close() | |
| words = [x.strip() for x in words if x.islower()] | |
| check = set(words) | |
| inputword = 'dick' |
This file contains hidden or 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> | |
| #include <fstream> | |
| #include <stdio.h> | |
| char first( std::string word ) | |
| { | |
| return word[0]; | |
| } | |
| std::string rest( std::string word ) |
This file contains hidden or 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
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| root /var/www/html; | |
| index index.html index.htm index.nginx-debian.html; | |
| server_name pleasedontcall.us www.pleasedontcall.us; |
This file contains hidden or 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
| worker_processes 1; | |
| error_log logs/error.log; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| events { | |
| worker_connections 1024; | |
| } |
This file contains hidden or 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
| root@peter:/home/peter # pkg2ng | |
| Converting packages from /var/db/pkg | |
| Converting pciids-20140206... | |
| pkg: Unable to open plist file: %s(/var/db/pkg/pciids-20140206/+CONTENTS): No such file or directory | |
| Skipping invalid package: /var/db/pkg/pciids-20140206 | |
| Converting xorg-macros-1.18.0... | |
| pkg: Unable to open plist file: %s(/var/db/pkg/xorg-macros-1.18.0/+CONTENTS): No such file or directory | |
| Skipping invalid package: /var/db/pkg/xorg-macros-1.18.0 | |
| Converting fontsproto-2.1.2... | |
| pkg: Unable to open plist file: %s(/var/db/pkg/fontsproto-2.1.2/+CONTENTS): No such file or directory |
This file contains hidden or 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
| File "medulla.py", line 81, in <module> | |
| connect = Medulla() | |
| File "medulla.py", line 35, in __init__ | |
| self.brain.monitor(self.sock) | |
| File "/usr/home/peter/bots/mongo/cortex.py", line 138, in monitor | |
| self.parse(line) | |
| File "/usr/home/peter/bots/mongo/cortex.py", line 241, in parse | |
| self.linker(urls) | |
| File "/usr/home/peter/bots/mongo/cortex.py", line 290, in linker | |
| if not urlbase.ok: |