Skip to content

Instantly share code, notes, and snippets.

View justquick's full-sized avatar
⚙️
Contemplating the Infinite

Justin Quick justquick

⚙️
Contemplating the Infinite
View GitHub Profile
[2015-04-10 16:13:55,594] [INFO] Startup: Welcome to Komodo Edit 9.0.0 build 15707 (platform macosx, running on Darwin 14.3.0 version Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64)
[2015-04-10 16:13:55,594] [INFO] Startup: /Users/jquick/Applications/Komodo Edit 9.app/Contents/MacOS/komodo built on Thu Mar 19 06:08:01 2015
[2015-04-10 16:13:55,656] [WARNING] koInitService: Unable to determine the current locale settings, defaulting to mac-roman
[2015-04-10 16:13:55,902] [WARNING] console-logger: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create (1) in resource://gre/modules/Preferences.jsm:381
[2015-04-10 16:13:55,902] [WARNING] console-logger: Bootstrapped manifest not allowed to use 'component' directive. (1) in file:///Users/jquick/Applications/Komodo%20Edit%209.app/Contents/Resources/extensions/scope-files@activestate.com/components/com
[2015-04-10 16:22:28,804] [INFO] Startup: Welcome to Komodo Edit 9.0.0 build 15707 (platform macosx, running on Darwin 14.3.0 version Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64)
[2015-04-10 16:22:28,804] [INFO] Startup: /Users/jquick/Applications/Komodo Edit 9.app/Contents/MacOS/komodo built on Thu Mar 19 06:08:01 2015
[2015-04-10 16:22:28,868] [WARNING] koInitService: Unable to determine the current locale settings, defaulting to mac-roman
[2015-04-10 16:22:29,061] [WARNING] console-logger: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create (1) in resource://gre/modules/Preferences.jsm:381
[2015-04-10 16:22:29,061] [WARNING] console-logger: Bootstrapped manifest not allowed to use 'component' directive. (1) in file:///Users/jquick/Applications/Komodo%20Edit%209.app/Contents/Resources/extensions/scope-files@activestate.com/components/com
[2015-04-10 17:05:27,973] [INFO] Startup: Welcome to Komodo Edit 9.0.0 build 15707 (platform macosx, running on Darwin 14.3.0 version Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64)
[2015-04-10 17:05:27,973] [INFO] Startup: /Users/jquick/Applications/Komodo Edit 9.app/Contents/MacOS/komodo built on Thu Mar 19 06:08:01 2015
[2015-04-10 17:05:28,064] [WARNING] koInitService: Unable to determine the current locale settings, defaulting to mac-roman
[2015-04-10 17:05:28,301] [WARNING] console-logger: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create (1) in resource://gre/modules/Preferences.jsm:381
[2015-04-10 17:05:28,302] [WARNING] console-logger: Bootstrapped manifest not allowed to use 'component' directive. (1) in file:///Users/jquick/Applications/Komodo%20Edit%209.app/Contents/Resources/extensions/scope-files@activestate.com/components/com
[2015-04-13 15:23:07,321] [INFO] Startup: Welcome to Komodo Edit 9.0.0 build 15707 (platform macosx, running on Darwin 14.3.0 version Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64)
[2015-04-13 15:23:07,322] [INFO] Startup: /Users/jquick/Applications/Komodo Edit 9.app/Contents/MacOS/komodo built on Thu Mar 19 06:08:01 2015
[2015-04-13 15:23:07,394] [WARNING] koInitService: Unable to determine the current locale settings, defaulting to mac-roman
[2015-04-13 15:23:07,653] [WARNING] console-logger: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create (1) in resource://gre/modules/Preferences.jsm:381
[2015-04-13 15:23:07,653] [WARNING] console-logger: Bootstrapped manifest not allowed to use 'component' directive. (1) in file:///Users/jquick/Applications/Komodo%20Edit%209.app/Contents/Resources/extensions/scope-files@activestate.com/components/com
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@font-face {
font-family: Fira Sans;
font-weight: 500;
src: url(http://fonts.gstatic.com/s/firasans/v11/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf);
@justquick
justquick / cached_property.py
Created December 19, 2022 05:05
from python 3.8.6
class cached_property:
def __init__(self, func):
self.func = func
self.attrname = None
self.__doc__ = func.__doc__
self.lock = RLock()
def __set_name__(self, owner, name):
if self.attrname is None:
self.attrname = name
PREFECT_API_DATABASE_CONNECTION_URL="postgresql+asyncpg://prefect:prefect@localhost:5432/prefect"
PREFECT_LOGGING_SERVER_LEVEL=DEBUG
PREFECT_LOGGING_LEVEL=DEBUG
PREFECT_LOGGING_INTERNAL_LEVEL=DEBUG