You can find the complete source of this zPage here
Special Free2z Syntax Extensions
Embeds
You can embed just about anything you can imagine
You can find the complete source of this zPage here
You can embed just about anything you can imagine
# you have to have a django project to do it this way | |
# You can run this in a `./manage.py shell` | |
from django.contrib.auth.hashers import make_password | |
make_password("youreverysecuresuperpass") | |
# this will output something that looks like this: | |
# 'pbkdf2_sha256$260000$rgjSFB3xwsxkfcL1iE8wq6$bDtiRY0+gtE4ahFdfDeHwy0tzLb8McDRnppS8kD8QJs=' | |
# by default in Django 4.0 |
#!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby | |
# SET YOUR_HOME TO THE ABSOLUTE PATH OF YOUR HOME DIRECTORY | |
# chmod +x install.rb | |
# ./install.rb | |
YOUR_HOME = '' | |
HOMEBREW_PREFIX = "#{YOUR_HOME}/usr/local" | |
HOMEBREW_CACHE = '/Library/Caches/Homebrew' | |
HOMEBREW_REPO = 'https://github.com/Homebrew/homebrew' |
import time | |
import sys | |
import tweepy | |
consumer_key = "" | |
consumer_secret = "" | |
key = "" | |
secret = "" | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) |
OSX - 10.8.5 | |
❯ virtualenv-2.7 --version | |
1.11.5 | |
❯ ./jython/dist/bin/jython | |
Jython 2.7b2+ (default:f6f7196d27a5, May 15 2014, 20:10:22) | |
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.7.0_55 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> |
""" | |
https://brilliant.org/community-problem/loser-keeps-bieber-we-stood-no-chance/ | |
?group=4cgSapeNTVXO&ref_id=115277 | |
""" | |
import random | |
def play_defensive(them): | |
if random.random() <= 0.04: |
>>> import ctypes | |
>>> ctypes.CDLL('libSystem.dylib') | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
File "/.../lib/python2.7/ctypes/__init__.py", line 365, in __init__ | |
self._handle = _dlopen(self._name, mode) | |
OSError: dlopen(libSystem.dylib, 6): image not found |
> python | |
Python 2.7.3 (default, Dec 4 2013, 11:24:08) | |
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import billiard | |
>>> billiard.VERSION | |
(2, 7, 3, 31) | |
>>> ^D | |
> pip install -U billiard |
% ansible-playbook pb.yml -i h -e "BOOL=that" | |
PLAY [all] ******************************************************************** | |
GATHERING FACTS *************************************************************** | |
ok: [localhost] | |
TASK: [wtf] ******************************************************************* | |
ok: [localhost] => { | |
"msg": "that" |
Steps | |
(Chrome) | |
#. Login (via google) | |
#. Go to register | |
#. Do not select the conference registration radio (corporate/hobbyist/etc) and only buy 1 t-shirt | |
#. Pay for the t-shirt | |
#. Land on summary page and it says you are not registered for conference (register here button) | |
#. Click "register" button. |