Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
class BookFormWithFileUpload < Netzke::Basepack::Form | |
def configure(c) | |
super | |
c.model = "Book" | |
end | |
def items | |
[{name: 'cover', xtype: :filefield}, *super] | |
end |
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Aug 26 2013 17:03:00) | |
MacOS X (unix) version | |
Compiled by Homebrew | |
Huge version without GUI. Features included (+) or not (-): | |
+arabic +file_in_path +mouse_sgr +tag_binary | |
+autocmd +find_in_path -mouse_sysmouse +tag_old_static | |
-balloon_eval +float +mouse_urxvt -tag_any_white | |
-browse +folding +mouse_xterm -tcl | |
++builtin_terms -footer +multi_byte +terminfo | |
+byte_offset +fork() +multi_lang +termresponse |
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
sass = require('gulp-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
imagemin = require('gulp-imagemin'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), |
Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
A very rough todo list for the Netzke 1.0 release (WIP)
NOTE: this is not replacement for CHANGELOG (CHANGELOG for Basepack).
clone
option in netzkeLoadComponent
JS method, which allows loading multiple instances of the same child component, providing different configuration options for each instance. I'd like to consolidate this with the "normal" loading method, and thus get this functionality available by default.component
DSL### Keybase proof | |
I hereby claim: | |
* I am mxgrn on github. | |
* I am mxgrn (https://keybase.io/mxgrn) on keybase. | |
* I have a public key ASAawdHU72TBx7thfEqkiCLt2j4IXULM4npcWfbwHkpGaQo | |
To claim this, I am signing this object: |
I switched to Dvorak about 9 years ago. It was my 3rd touch-typed layout, after ЙЦУКЕН and QWERTY, both of which I was using daily. Now, that I look back, I think choosing Dvorak wasn't ideal: while it's been a huge relief after QWERTY (this ubiquitous finger twister), Dvorak showed certain drawbacks I should have noticed from the very beginning. A good example would be the frequent "sl" combination (slow, sleep, slide, etc), which is a same-finger combination for the right pinkie. Recently, some extra research showed it must have always been Colemak.
Learning a new layout is akin to learning a musical instrument: the cognitive effort required for deliberate practice feels pleasingly mind stretching. So, I decided to switch again. Below this paragraph I'll be posting everything I have typed so far during my Colemak practice, including some report on the progress - for what it's worth. Minor editing here and there is possible for readability. Let's see how much typing it takes to get back to a reasonable spee
Verifying that "maxgorin.id" is my Blockstack ID. https://onename.com/maxgorin |
# install wkhtmltopdf | |
RUN apt-get -q update && \ | |
apt-get -qy install --no-install-recommends wget && \ | |
wget --no-check-certificate -nv -O /tmp/wkhtmltox.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.bullseye_amd64.deb && \ | |
apt-get -qy install /tmp/wkhtmltox.deb && \ | |
cd /usr/local/bin && \ | |
cp wkhtmltoimage /usr/bin/wkhtmltoimage && \ | |
cp wkhtmltopdf /usr/bin/wkhtmltopdf |
defmodule AshTable.Book do | |
use Ash.Resource, data_layer: AshPostgres.DataLayer | |
postgres do | |
table "books" | |
repo AshTable.Repo | |
end | |
attributes do | |
uuid_primary_key :id |