Every so often I test all four Lightward AI entrypoints with a standard script. It goes like this:
- I'm a slow reader (Core)
- I'm a fast reader (Core)
- I'm a slow writer (Pro)
- I'm a fast writer (Pro)
Every so often I test all four Lightward AI entrypoints with a standard script. It goes like this:
I've been user of both Lightward and Lightward Pro for... Two weeks now I think? They're both great and I find good uses for both of them. I'm not very clear of what the difference is between them still. The base question---difference between 'reader' and 'writer'---seems significant here. Lightward as something aiming more at giving advice, Lightward Pro as something egging you on to discover stuff by yourself?
#!/usr/bin/env ruby | |
require 'optparse' | |
require 'set' | |
require 'uri' | |
require 'find' | |
require 'pathname' | |
# Initialize options | |
options = { |
Given the following shop config: | |
{...} | |
And given a product | |
When I am logged in as [email protected] | |
And when I am tagged with "foo" | |
Then I should be denied access to /products/baz | |
And I should be granted access to /products/bar |
Manager's Rating | Self-Assessment | |
---|---|---|
Teamwork | Exceeded expectations Definition:Performed above the high level expected of the role |
Achieved expectations consistently |
Innovation | Achieved expectations Definition:Performed at the high level expected of the role |
Achieved expectations consistently |
Results | Exceeded expectations Definition:Performed above the high level expected of the role |
Achieved expectations consistently |
Teamwork:
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
I hereby claim:
To claim this, I am signing this object:
syntax on | |
set nocompatible | |
set autoindent | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 |
#!/usr/bin/env ruby | |
# desktopography-dl.rb | |
# Requires: nokogiri | |
# | |
# Downloads /everything/ from a given Desktopography exhibition. Assumes we're on | |
# something unixy, with mkdir and wget available for use. | |
require 'open-uri' |