- Try to get a ticket to tour the Boros collection in a former bunker
- http://www.indexberlin.de/ for gallery listings
- get a 3-day pass to see the Museum Island museums plus Hamburger Bahnhof for contemporary art. Definitely have lunch or at least coffee and cake at the Hamburger Bahnhof restaurant.
- Nefertiti at the Neues Museum (Museum Island) is not hype - it's worth a visit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 4.5.6.1 | |
sealed trait TrafficLight { | |
def next = this match { | |
case Red => Green | |
case Green => Yellow | |
case Yellow => Red | |
} | |
} | |
case object Red extends TrafficLight |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jrnl -from yesterday --export json | jq .entries[].title -r | awk '{print "- "$0}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.notion-presence-container { | |
display: none; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: ruby:2.5.1 | |
services: | |
- postgres:9.5 | |
variables: | |
POSTGRES_DB: artcat_test | |
POSTGRES_USER: runner | |
# Cache gems in between builds | |
cache: |
- Don't rush to start buying pieces. Spend time looking at a lot of galleries, and browsing Artsy and other art sites to figure out what you like.
- Here is a calendar of the shows I want to see in NYC: Filterizer.
- Benefit art auctions are a good way to see a lot of art and get started at a lower price point. One of my favorite benefits each year is at NURTUREart.
- Our art collection site is http://www.hoggardwagner.org/.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu@artcat-vpc-1:~$ dpkg -l | grep magic | |
ii file 1:5.14-2ubuntu3.1 amd64 Determines file type using "magic" numbers | |
ii imagemagick 8:6.7.7.10-6ubuntu3.4 amd64 image manipulation programs | |
ii imagemagick-common 8:6.7.7.10-6ubuntu3 all image manipulation programs -- infrastructure | |
ii libmagic1:amd64 1:5.14-2ubuntu3.1 amd64 File type determination library using "magic" numbers | |
ii libmagickcore-dev 8:6.7.7.10-6ubuntu3.4 amd64 low-level image manipulation library - development files | |
ii libmagickcore5:amd64 8:6.7.7.10-6ubuntu3.4 amd64 low-level image manipulation library | |
ii libmagickcore5-extra:amd64 8:6.7.7.10-6ubuntu3.4 amd64 low-level image manipulation library - extr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ruby CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/language-ruby/ for more details | |
# | |
version: 2 | |
jobs: | |
build: | |
docker: | |
# specify the version you desire here | |
- image: circleci/ruby:2.4.1-node-browsers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -------------------------------------------------------------------------------- | |
media_overlay = { | |
images = { | |
mimetypes = {image/gif, image/jpeg, image/tiff, image/png, image/x-dcraw, image/x-psd, image/x-dpx, image/jp2, image/x-adobe-dng, image/x-dcraw, application/dicom}, | |
display_version = tilepic, | |
alt_display_version = large, | |
viewer_width = 100%, viewer_height = 100%, | |
download_version = original, | |
viewer = TileViewer, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# after doing a "gem install wikidata" | |
require 'wikidata' | |
artist = Wikidata::Item.find_by_title "Valie Export" | |
puts "Artist ID is: #{artist.id}" |