Skip to content

Instantly share code, notes, and snippets.

View scythargon's full-sized avatar

Dmitry Vasilev scythargon

View GitHub Profile
def get_chained_select_choices(content_type, depth=1, with_field_types=False):
""" Gets field names from the content_type.
depth=1 means return any fk or manytomany fields as well
TODO: depth>1 is not implemented yet
"""
if depth > 1:
raise Exception("depth should be 0 or 1")
# helpers
model_klass = content_type.model_class()
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
import vkontakte
import sys
import ipdb
#!/bin/bash
$(cd pages && python -m SimpleHTTPServer ) &
while true; do
change=$(inotifywait -r -e close_write,moved_to,create templates/*)
change=${change#./templates/* }
(./render_test_airline.py && echo -e "\033[1;32mtemplate recompiled\033[0m") || echo -e "\033[1;31merror!\033[0m"
done
class BulletProof(object):
def __getattribute__(self, name):
if name == '__class__':
return super(BulletProof, self).__getattribute__(name)
return BulletProof()
def __str__(self):
return ''
b = BulletProof()
print(b.asdas.sdgfd.gd.dfg.dfg.gdfhgftg.h.dfgfgh)
from queue import Queue
import threading
class GeneratedQueue(Queue):
"""
usage:
for item in q.each():
#!/bin/bash
# chkconfig: 345 96 4
NAME=uwsgi
DESC=uwsgi
PIDFILE=/home/aviasales/.uwsgi.pid
USER=aviasales
# Source function library.
. /etc/init.d/functions
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CodePen - Modern HTML5 Lightbox in 12 Lines of JavaScript</title>
<style>
dialog {
position: fixed;
left: 50%;
#!/usr/bin/python3
# parent.py
import sys
from subprocess import Popen, PIPE
with Popen([sys.executable, "child.py"], stdout=PIPE, stdin=PIPE, bufsize=1,
universal_newlines=True) as p:
for line in sys.stdin:
line = line.rstrip('\n')
print(line, file=p.stdin, flush=True)
@scythargon
scythargon / asyncio_server.py
Last active August 1, 2020 11:49
Websocket communication between slack and webpage
"""
As a client can use the next html page:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
window.addEventListener("load", function() {
// create websocket instance
var mySocket = new WebSocket("ws://localhost:8080/ws");
@scythargon
scythargon / .bashrc
Created January 5, 2022 19:10
Bash aliases
gc(){
git add . && git commit -am "$@"
}
alias "pg=ping 8.8.8.8"
gcp(){
git add .
git commit -am "$@" && git push
}