Skip to content

Instantly share code, notes, and snippets.

View ethanhs's full-sized avatar
🐍
▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀ꜚ

Ethan Smith ethanhs

🐍
▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀ꜚ
View GitHub Profile
@ethanhs
ethanhs / output.log
Created June 25, 2017 06:53
Failed build of Pyjion
1>------ Build started: Project: Pyjion, Configuration: Debug x64 ------
1> intrins.cpp
1>intrins.cpp(534): error C2059: syntax error: '.'
1>intrins.cpp(534): error C2143: syntax error: missing ';' before '}'
1>intrins.cpp(535): error C2065: 'PyId_displayhook': undeclared identifier
1>intrins.cpp(537): error C2059: syntax error: 'if'
1>intrins.cpp(537): error C2143: syntax error: missing ';' before '{'
1>intrins.cpp(537): error C2447: '{': missing function header (old-style formal list?)
1>intrins.cpp(543): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>intrins.cpp(543): error C2373: 'res': redefinition; different type modifiers
@ethanhs
ethanhs / my_first_calc.c.py
Created October 20, 2017 04:16
Because we need a C version
MAX = 250
nums = range(MAX + 1)
signs = '+-*/'
if_template = '''
if (a == {0} && b == '{1}' && c == {2})
puts("{0} {1} {2} = {3}");
'''
main_template = '''
travis_fold:start:worker_info
Worker information
hostname: 38bd253f-48d2-4d66-b916-0779d5cf1f1f@1.i-05f7a68-production-2-worker-org-ec2.travisci.net
version: v3.5.0 https://github.com/travis-ci/worker/tree/77dbc57c72d00592aeb754773b712da843c7e00d
instance: 355a358 travisci/ci-garnet:packer-1512502276-986baf0 (via amqp)
startup: 463.749498ms
travis_fold:end:worker_info
mode of ‘/usr/local/clang-5.0.0/bin’ changed from 0777 (rwxrwxrwx) to 0775 (rwxrwxr-x)
travis_fold:start:system_info
Build system information
@ethanhs
ethanhs / keybase.md
Created March 2, 2018 06:59
keybase.md

Keybase proof

I hereby claim:

  • I am ethanhs on github.
  • I am ethanhs (https://keybase.io/ethanhs) on keybase.
  • I have a public key ASB62E5i52bI_UgYyZyjrivJLeaf9qTzpAD4vITJ7-7dtAo

To claim this, I am signing this object:

@ethanhs
ethanhs / output.log
Created March 6, 2018 13:24
Changing default python version in mypy
Worker information
hostname: 26f6015e-26d2-496e-a5c1-f4148fa0eb71@1.i-0198d17-production-2-worker-org-ec2.travisci.net
version: v3.5.0 https://github.com/travis-ci/worker/tree/77dbc57c72d00592aeb754773b712da843c7e00d
instance: 24be829 travisci/ci-garnet:packer-1512502276-986baf0 (via amqp)
startup: 417.936957ms
mode of ‘/usr/local/clang-5.0.0/bin’ changed from 0777 (rwxrwxrwx) to 0775 (rwxrwxr-x)
system_info
Build system information
Build language: python
Build group: stable
@ethanhs
ethanhs / singledispatchmethod.py
Created April 25, 2018 03:35
`functools.singledispatchmethod` for use before 3.8
from functools import singledispatch, update_wrapper
class singledispatchmethod:
"""Single-dispatch generic method descriptor.
Supports wrapping existing descriptors and handles non-descriptor
callables as instance methods.
"""
def __init__(self, func):
if not callable(func) and not hasattr(func, "__get__"):
<?xml version="1.0" encoding="utf-8"?>
<Language>
<lang_name>fr</lang_name>
<title_error>Erreur</title_error>
<title_info>Information</title_info>
<title_warning>Avertissement</title_warning>
<title_finished>Fini</title_finished>
<title_eula>CLUF</title_eula>
<title_bg_disabled>Background désactivée</title_bg_disabled>
<title_are_you_sure>Est-ce que vous êtes sûr</title_are_you_sure>
@ethanhs
ethanhs / py-spy-mypy
Created October 18, 2018 09:48
Running py-spy on mypy
Collecting samples from 'python -m mypy mypy' (python v3.7.0)
Total Samples 4700
GIL: 0.00%, Active: 32.00%, Threads: 1
%Own %Total OwnTime TotalTime Function (filename:line)
8.50% 8.50% 1.77s 1.82s atomic_write (C:\Users\ethanhs\Documents\mypy\mypy\build.py:866)
1.00% 9.50% 0.190s 2.78s __eq__ (C:\Users\ethanhs\Documents\mypy\mypy\types.py:532)
1.00% 1.00% 0.025s 0.085s check_arg (C:\Users\ethanhs\Documents\mypy\mypy\checkexpr.py:1163)
1.00% 3.50% 0.190s 1.19s __hash__ (C:\Users\ethanhs\Documents\mypy\mypy\types.py:527)
0.50% 9.50% 0.045s 3.76s literal_hash (C:\Users\ethanhs\Documents\mypy\mypy\literals.py:93)
@ethanhs
ethanhs / client.py
Last active October 24, 2018 19:51
An experiment writing nice wrappers around namedpipes using the _winapi module.
import time
import sys
from namedpipe import *
if __name__ == '__main__':
if len(sys.argv) < 2:
print("need s or c as argument")
elif sys.argv[1] == "s":
with NamedPipeServer('testFoo') as server:
count = 10
while count > 0:
@ethanhs
ethanhs / output.log
Created February 28, 2019 22:41
Trying to build typed_ast with pypy
ethanhs▶~\Documents\typed_ast◇master❯ ..\..\Downloads\pypy3.6-v7.0.0-win32\pypy3 -m pip install .
Processing c:\users\ethanhs\documents\typed_ast
Installing collected packages: typed-ast
Running setup.py install for typed-ast ... error
Complete output from command C:\Users\ethanhs\Downloads\pypy3.6-v7.0.0-win32\pypy3.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\ethanhs\\AppData\\Local\\Temp\\pip-req-build-13ik00j7\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\ethanhs\AppData\Local\Temp\pip-record-qn2gezr2\install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build\lib.win32-3.6
creating build\lib.win32-3.6\typed_ast