Skip to content

Instantly share code, notes, and snippets.

View jvia's full-sized avatar

Jeremiah Via jvia

  • The New York Times
  • Portland, OR
  • 09:39 (UTC -07:00)
View GitHub Profile
OCR/COP-BIKELOUD_00001468.pdf- * Transit feasibility study (25,000+).
OCR/COP-BIKELOUD_00001468.pdf-
OCR/COP-BIKELOUD_00001468.pdf-BICYCLE AND PEDESTRIAN PLAN, consistent with ORS
OCR/COP-BIKELOUD_00001468.pdf:366.514. Including:
OCR/COP-BIKELOUD_00001468.pdf-
OCR/COP-BIKELOUD_00001468.pdf- * Inventory/assessment (function/type).
OCR/COP-BIKELOUD_00001468.pdf-
OCR/COP-BIKELOUD_00002802.pdf-described on page 5-2), the TPR includes the following element specific to pedestrians:
OCR/COP-BIKELOUD_00002802.pdf-
OCR/COP-BIKELOUD_00002802.pdf- Identify a network of pedestrian routes throughout the planning area and a list of
@jvia
jvia / querqy.clj
Created December 20, 2021 21:51
querqy clojure example
;; define a rule base
(defrules rules
(match "personal computer"
(synonym "pc")
(synonym "desktop computer")
(down 50 "software"))
(match "sofa*"
(synonym "sofa *1")))
@jvia
jvia / tmdb.edn
Last active February 4, 2020 16:52
{vase/plugins [com.nytimes.vase.elasticsearch]
vase/service (fern/lit vase/service
{:apis [@tmdb/api]
:service-map
{:io.pedestal.http/resource-path "/public"
:io.pedestal.http/port 8080
:io.pedestal.http/secure-headers {:content-security-policy-settings
{:object-src "none"}}}})
### Keybase proof
I hereby claim:
* I am jvia on github.
* I am jmv (https://keybase.io/jmv) on keybase.
* I have a public key ASC3q1NAjUN4FgqO7qmX0nu7q_6pZxwshzy14z5gc5J9owo
To claim this, I am signing this object:
@jvia
jvia / use-package-imenu.el
Last active February 13, 2016 15:54
Snippet to add use-package declarations to imenu
(add-to-list 'lisp-imenu-generic-expression
(list (purecopy "use-package")
(purecopy (concat "^\\s-*(use-package\\s-+\\("
lisp-mode-symbol-regexp "\\)"))
1))
@jvia
jvia / gist:1007209
Created June 3, 2011 21:31
Simple route finding.
% At the moment there are no loops in any route
path(a, b).
path(a, c).
path(c ,d).
path(d, e).
path(e, f).
%%% Calling rule
%% This is the interface the user interacts with. This just saves the
%% user from explicitly typing in the empty list. That empty list is