I hereby claim:
- I am dakra on github.
- I am dakra (https://keybase.io/dakra) on keybase.
- I have a public key whose fingerprint is 710E 779A 3A9A 648A 06B1 B2C7 C1C8 D63F 884E F9C9
To claim this, I am signing this object:
| ;; Some stuff from https://github.com/seancorfield/dot-clojure | |
| ;; | |
| ;; The deps.edn file describes the information needed to build a classpath. | |
| ;; | |
| ;; When using the `clojure` or `clj` script, there are several deps.edn files | |
| ;; that are combined: | |
| ;; - install-level | |
| ;; - user level (this file) | |
| ;; - project level (current directory when invoked) | |
| ;; |
| <template> | |
| <div class="workspace models" :class="[layout, details]"> | |
| <sidebar namespace="models"></sidebar> | |
| <div class="list"> | |
| <div class="top-bar filters"> | |
| <search-field :placeholder="i18n['Search']" | |
| v-model="searchTerm" | |
| @create="createModel"/> | |
| </div> | |
| <div class="pane"> |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/env python | |
| # make sure to be logged in with `gcloud init` | |
| # Add to /etc/hosts: | |
| # python create_gcloud_hosts_entries.py | sudo tee -a /etc/hosts | |
| from oauth2client.client import GoogleCredentials | |
| from googleapiclient import discovery |
| from sqlalchemy import create_engine, Column, Integer, String, ForeignKey | |
| from sqlalchemy.orm import Session, relationship, subqueryload, joinedload | |
| from sqlalchemy.ext.declarative import declarative_base | |
| Base = declarative_base() | |
| e = create_engine("mysql+mysqlconnector://scott:tiger@localhost/test", echo=True) | |
| class Address(Base): |
| import sys | |
| import logging | |
| from pyramid.compat import configparser | |
| from pyramid.util import DottedNameResolver | |
| from pyramid.paster import bootstrap | |
| # pshellintellij uses first two arguments as ports to connect shell | |
| if len(sys.argv) > 3: | |
| config_file = sys.argv[3] | |
| else: |