Skip to content

Instantly share code, notes, and snippets.

View jdanyow's full-sized avatar
💭
Confirming my whereabouts

Jeremy Danyow jdanyow

💭
Confirming my whereabouts
View GitHub Profile
@jdanyow
jdanyow / index.css
Created July 3, 2020 03:09 — forked from LeaVerou/dabblet.css
Playing with background-attachment
/**
* Playing with background-attachment
*/
pre {
max-height: 150px;
border: 1px solid silver;
overflow: auto;
background: url('http://placekitten.com/200/200');
color: white;
@jdanyow
jdanyow / index.html
Created April 16, 2020 22:26 — forked from maschad96/index.html
another poc
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GistRun</title>
<link rel="stylesheet" href="styles.css">
<style>
* {
outline-color: inherit;
}
@jdanyow
jdanyow / app.html
Last active December 19, 2017 04:47 — forked from RomkeVdMeulen/app.html
Aurelia Validation Issue 423 Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@jdanyow
jdanyow / app.html
Last active December 10, 2017 22:59 — forked from AquilaSands/app.html
Aurelia Gist
<template>
<require from="./outer"></require>
<require from="./inner"></require>
<h1>${message}</h1>
<outer><inner></inner></outer>
</template>

5 minutes PgAdmin4 Desktop install guide

Done on Linux (Ubuntu tested)

Virtualenv & install of Python package & its deps

cd $HOME
virtualenv --python=/usr/bin/python2.7 pgadmin4
source pgadmin4/bin/activate
@jdanyow
jdanyow / app.html
Created April 15, 2017 15:41 — forked from Einarsson/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
<template>
<style>
.active {
font-weight: bold;
}
</style>
<ul>
<li repeat.for="row of router.navigation" class="${row.isActive ? 'active' : ''}">
<a href.bind="row.href">${row.title}</a>
</li>
<template>
<div if.bind="showApp" ref="theelement">
This is the element.
</div>
<button click.delegate="showApp = !showApp">Toggle</button>
${theelement}
</template>
@jdanyow
jdanyow / app.html
Created March 2, 2017 05:13 — forked from ajayvikas/app.html
Aurelia Grid Column Render Issue
<template>
<require from="./grid"></require>
<require from="./grid-column"></require>
<h2>Grid Test</h2>
<div style="margin-bottom: 20px;">
<button type="button" click.delegate="toggleNameColumn()">${buttonText}</button>
</div>
<grid items.bind="customers" grid.ref="customerGrid">
<grid-column field="id" title="ID"></grid-column>
<grid-column field="name" title="NAME"></grid-column>
@jdanyow
jdanyow / app.html
Created February 11, 2017 15:43 — forked from lstarky/app.html
Aurelia Validation addObject and removeObject Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>