Skip to content

Instantly share code, notes, and snippets.

View ghost-x47's full-sized avatar
🎯
Focusing

Artem Smirnov ghost-x47

🎯
Focusing
View GitHub Profile
@ghost-x47
ghost-x47 / msvc_env
Created September 10, 2025 02:43
Sublime text 4 MSVC Environment setup plugin to properly load env variables on start, rather than running vcvarsall directly in built script, therefore reduce compilation times for smaller programs substantialy.
import sublime
import sublime_plugin
from threading import Thread
from subprocess import Popen, PIPE
from os import environ
import os
# Modified version of
@ghost-x47
ghost-x47 / locustfile.py
Created October 9, 2018 11:38 — forked from yamionp/locustfile.py
Websocket Locust Sample. locustfile and Echo/Chat Server
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from __future__ import print_function
import json
import uuid
import time
import gevent
@ghost-x47
ghost-x47 / Fastfile
Created December 6, 2017 04:34 — forked from dddnuts/Fastfile
Build ipa from Unity project with fastlane
fastlane_version "1.94.0"
default_platform :ios
platform :ios do
desc "Run Unity Editor tests"
lane :test_unit do
unity(
run_editor_tests: true
)