-
what
-
is
-
up
everyone
πΌ
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
class HelloWorld: | |
def __init__(self, name): | |
self.name = name.capitalize() | |
def sayHi(self): | |
print "Hello there " + self.name + "!" | |
hello = HelloWorld("world") | |
hello.sayHi() |
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
File "/home/tildemush/tildemush/server/tmserver/core.py", line 88, in handle_map | |
return self.game_world.handle_map(self.user_account.player_obj) | |
File "/home/tildemush/tildemush/server/tmserver/world.py", line 898, in handle_map | |
return render_map(cls, player_obj.room, distance=2) | |
File "/home/tildemush/tildemush/server/tmserver/mapping.py", line 27, in render_map | |
return graph_easy(mapfile) | |
File "/home/tildemush/tildemush/server/tmserver/mapping.py", line 37, in graph_easy | |
text=True) | |
File "/usr/lib/python3.6/subprocess.py", line 403, in run | |
with Popen(*popenargs, **kwargs) as process: |
thoughts on fallout 76!
I definitely had Fun in the few hours I put in yesterday. It feels like fallout 3/4 and succeeds so far in spite of the multiplayer aspect. I think if I end up with the right players the multiplayer could be excellent, but so far it's mostly assholes playing around me.
I like:
- the construction stuff is very improved over 4 and being able to build anywhere is so cool
- the crafting is a little more interesting
- the nature is beautiful and they capture a semirural area pretty well
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
(incantation by vilmibm | |
"This script defines a silly, kind of evil book. It is intended to | |
illustrate every feature that WITCH offers." | |
(has {"name" "the necronomicon" | |
"description" "a book bound in flesh seething with undead energy." | |
"pronouns" ["it" "it" "its"] | |
"souls" [] | |
"log" []}) | |
(allows {"read" "world" |
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
ycH="hidden"; | |
ycV="visible"; | |
ycBU='http://a372.g.a.yimg.com/f/372/27/1d/pic.geocities.com/images/dhtmlad/'; | |
ycMM1='<tr><td valign=middle bgcolor="#dcdcdc"><a href="'; | |
ycMM2='" target=_new><img alt="alt" src="'+ycBU; | |
ycMM3='" width=14 height=14 border=0 hspace=4><font face="arial" size="1" color="#0000FF">'; | |
ycMM4='</font></a></td></tr>'; | |
ycRF=';return false"'; | |
ycWSC=' onMouseOut="window.status=\'\';return true"'; | |
ycWS1=ycRF+' onMouseOver="window.status=\'Minimize\';return true"'+ycWSC; |
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
# CARDBOARD VR VNC TETHERING | |
_find_ip () { | |
# tethering always sets ip to the below prefix | |
ip addr | grep enp | grep -Eo "inet 192.168.42.[0-9]+" | grep -Eo "192.168.42.[0-9]+" | |
} | |
start_vnc () { | |
tethering_ip="$(_find_ip)" | |
if [ -z "$tethering_ip" ]; then |