HN user

daGrevis

1,234 karma

[ my public key: https://keybase.io/dagrevis; my proof: https://keybase.io/dagrevis/sigs/l6JRPbRKhru31TNZAVIXJwrFCDHOZ98uQ98l7DlN2hU ]

Posts31
Comments215
View on HN
github.com 12y ago

Vimbed – a plugin for embedding Vim

daGrevis
3pts0
exploreflask.com 12y ago

Explore Flask is now free

daGrevis
1pts0
www.lighttable.com 12y ago

Light Table 0.6.6

daGrevis
167pts31
chibicode.com 12y ago

An Intuitive Markdown Cheatsheet

daGrevis
2pts0
github.com 12y ago

Vimmy the Pooh

daGrevis
1pts0
github.com 12y ago

An open-source Python implementation using JIT techniques

daGrevis
83pts27
github.com 12y ago

TimL – Clojure like language which compiles down to VimL

daGrevis
207pts33
blog.miguelgrinberg.com 12y ago

Easy WebSockets with Flask and Gevent

daGrevis
1pts0
blog.lostpropertyhq.com 12y ago

Postgres full-text search is Good Enough

daGrevis
5pts0
github.com 12y ago

Phantomas – PhantomJS-based web performance metrics collector

daGrevis
1pts0
letoverlambda.com 12y ago

Lisp Is Not Functional

daGrevis
1pts0
caniusepython3.com 12y ago

Can I Use Python 3?

daGrevis
94pts63
github.com 12y ago

Xbanish – banish the mouse cursor when typing

daGrevis
2pts0
aphyr.com 12y ago

Clojure from the ground up: modeling

daGrevis
4pts0
github.com 12y ago

Personal Dashboard – Collecting, saving and reporting various data about me

daGrevis
2pts0
www.coffitivity.com 12y ago

Coffitivity – Increase Your Creativity

daGrevis
2pts5
igor.io 12y ago

Functional Library: Null

daGrevis
1pts0
en.wikipedia.org 12y ago

Plankalkül — a programming language designed between 1943 and 1945

daGrevis
6pts0
metarabbit.wordpress.com 12y ago

Python “lists” are not lists. A history

daGrevis
10pts12
github.com 12y ago

Base16 — Color schemes for hackers

daGrevis
2pts0
www.forbes.com 12y ago

It's High Time For The 4-Day Workweek

daGrevis
1pts0
asciidoctor.org 12y ago

What is AsciiDoc? Why do we need it?

daGrevis
7pts0
github.com 12y ago

Cookiecutter — a CLI utility that creates projects from project templates

daGrevis
1pts0
www.kickstarter.com 13y ago

Practical Flask Book Project

daGrevis
8pts2
github.com 13y ago

Django-admin2 by guys behind Two Scoops of Django

daGrevis
1pts0
thechangelog.com 13y ago

Shame.css — a best practice for handling CSS hacks

daGrevis
1pts0
fooljs.com 13y ago

Fool.js — I pity the user

daGrevis
3pts0
jshakespeare.com 13y ago

Stop externalising your life

daGrevis
322pts152
github.com 13y ago

Faker.js - generate massive amounts of fake data in the browser and Node.js

daGrevis
107pts22
surf.suckless.org 13y ago

Suckless surf: a micro-browser that really follows Unix philosophy

daGrevis
2pts0

OrangeLV | Full-stack web developer | Riga, Latvia | Full-time onsite | https://www.orangelv.com/

# Our focus

- Our own products and long-term partnerships with clients

- Custom-made logic that meets complex business requirements

- Intuitive and visually pleasing UIs

- Interactive and dynamic visualizations using 3D, vector graphics and photos

- AR/VR experiences

# Our stack and workflow

- TypeScript in strict mode, with Webpack

- Frequent use of functional style, immutability, async/await, Lodash

- React frontend (Redux, Reselect, modular transpiled CSS)

- Node.js backend (Koa)

- PostgreSQL

- Modern infrastructure (CI/CD, Docker, Kubernetes, Terraform, Google Cloud Platform)

- Always up-to-date tools and depencencies

- Automation where we can

- Auto-enforced code style and formatting

- Git with pull requests and peer reviews

- All projects have a dedicated owner

- Some project-specific tech

Contact us at careers@orangelv.com

Excel.vim 12 years ago

Not everything has to be useful or even sane. Especially on _Hacker_ News.

Edit: To clarify, I think this shows what hacking is all about. Playful cleverness and curiosity.

The main selling point of Popcorn Time is that it allows to watch movies more easily than solutions that asks money for that. I don't think music industry has this problem — there are services like Spotify, Rdio and many more that offers painless listening.

That aside, the app looks really polished and I'm glad it has Linux support backed in.

If someone is wondering what's going on with unicode support:

No unicode support is actually implemented. Python3 calls for strict difference between str and bytes data types (unlike Python2, which has neutral unified data type for strings and binary data, and separates out unicode data type). MicroPython faithfully implements str/bytes separation, but currently, underlying str implementation is the same as bytes. This means strings in MicroPython are not unicode, but 8-bit characters (fully binary-clean).

GitHub Cheat Sheet 12 years ago

One shouldn't alias 'git add . && git commit' to 'git ac'. You should always check what you are about to commit with 'git status' and 'git diff'.