Keybase proof
I hereby claim:
- I am dpwrussell on github.
- I am dpwrussell (https://keybase.io/dpwrussell) on keybase.
- I have a public key whose fingerprint is 6692 35CA 6CD1 E5FB 6E4F 7862 568A 08ED 0895 1A87
To claim this, I am signing this object:
*.class | |
*.pyc | |
fmjdbc.jar | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import (relationship, sessionmaker, subqueryload, | |
with_polymorphic) | |
from sqlalchemy import create_engine, Column, String, Integer | |
from sqlalchemy.schema import ForeignKey | |
Base = declarative_base() | |
class A(Base): |
I hereby claim:
To claim this, I am signing this object:
*.sql | |
*.sed |
<?xml version="1.0" encoding="UTF-8"?> | |
<included> | |
<!-- syslog ///////////////////////////////////////////////////////////////// --> | |
<appender name="SYSLOG" class="ch.qos.logback.classic.net.SyslogAppender"> | |
<syslogHost>localhost</syslogHost> | |
<facility>local6</facility> | |
<suffixPattern>OMERO [%thread] %logger %msg</suffixPattern> | |
</appender> | |
</included> |
--- | |
- hosts: itlomerod01 | |
remote_user: root | |
tasks: | |
# get the id of an installed script | |
- name: check if figure script has been installed (database) | |
shell: "{{ omero_base }}/OMERO.server/current/bin/omero script list | grep 'Figure_To_Pdf' | gawk -F '|' '{ print $1 }'" | |
sudo: yes | |
sudo_user: omero-local |
'use strict'; | |
class MethodBindingTest { | |
constructor() { | |
this.x = 5; | |
// Bind this method | |
this.boundPrintX = this.boundPrintX.bind(this); | |
} |
import sqlalchemy as sa | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import scoped_session, sessionmaker, relationship | |
from sqlalchemy.ext.hybrid import hybrid_property | |
from marshmallow_sqlalchemy import ModelSchema | |
engine = sa.create_engine('sqlite:///:memory:') | |
session = scoped_session(sessionmaker(bind=engine)) | |
Base = declarative_base() |
import sqlalchemy as sa | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import scoped_session, sessionmaker, relationship | |
from sqlalchemy.ext.hybrid import hybrid_property | |
from marshmallow_sqlalchemy import ModelSchema | |
engine = sa.create_engine('sqlite:///:memory:') | |
session = scoped_session(sessionmaker(bind=engine)) | |
Base = declarative_base() |