Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# TCP Port Forwarding via Socks5 Socket | |
# Original Author : WangYihang <[email protected]> (for port forwarding) | |
# (As gist: <https://gist.github.com/WangYihang/e7d36b744557e4673d2157499f6c6b5e>) | |
# Changes : NeoAtlantis <[email protected]> | |
# (adapted to pySocks, argparse for CLI invokation, encryption, etc.) | |
import argparse |
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
"""Diagnose script for checking OS/hardware/python/pip/mxnet. | |
The output of this script can be a very good hint to issue/problem. | |
""" | |
import platform, subprocess, sys, os | |
def check_python(): | |
print('----------Python Info----------') | |
print('Version : ' + platform.python_version()) | |
print('Compiler : ' + platform.python_compiler()) | |
print('Build : ' + ', '.join(platform.python_build())) |
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
''' | |
This was a project started by Alex that I am fixing some problems with. The logic itself is all Alex's. | |
Fix Autodesk CAM General LabVolt code to work with LabVolt M600 Mills | |
This probably requires some generalisation before it works with all setups | |
Code is heavily commented, but a basic knowledge of regex is required still | |
This is now less of a hack and an actual work around. | |
Current features: |