Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
rtsisyk
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
rtsisyk
2y ago
https://github.com/mapsme/omim/ was forked in December 2020, with all new changes up to the last commit of Apr 28, 2021 merged into https://github.com/organicmaps/organicmaps/ later. MAP
2.
▲
Organic Maps Turns 4: The Privacy-Focused Alternative to Google Maps
(organicmaps.app)
7 points
by
rtsisyk
2y ago
|
6 comments
3.
▲
by
rtsisyk
2y ago
What have we achieved so far as we approach Christmas 2024: - ~3M¹ users from all countries of the world - ~15k ratings and reviews on AppStore and Google Play - 4.8/4.6 average rating on AppStore/Google Play - 10k+ stars on GitHu
4.
▲
by
rtsisyk
2y ago
> Roman noticed this. He undid the changes, made this post, and has now been booted from the organization? Correct.
5.
▲
by
rtsisyk
2y ago
Removing the MIT license from the repository and claiming it as 'my code' is not how open source works.
6.
▲
by
rtsisyk
10y ago
BTW, packagecloud.io is the great hosting for RPM/DEB packages. We've been using it for the last couple years. GitHub + Travis CI + PackageCloud combination allows us build and publish packages for EVERY git commit in 30+ reposito
7.
▲
by
rtsisyk
10y ago
Overhead of localtime() is well-known, just RTFM. Anyway, this article provides very good explanation.
8.
▲
by
rtsisyk
10y ago
Hi, Tarantool[1] team maintains production-ready fork of LuaJIT [2]. Commercial support contract for Tarantool covers problems with LuaJIT as the integral part of the product. [1]: http://tarantool.org/ [2]: https:/&#
9.
▲
by
rtsisyk
10y ago
Tarantool[1], a general-purpose database and app server based on LuaJIT, has Lua/C API to work with 64-bit numbers and even custom cdata objects [2]. I can extract this code into a separate library for you. [1]: http://taran
10.
▲
by
rtsisyk
10y ago
Demo: https://asciinema.org/a/3unm4sw4g889ddk7tr0uettbn
11.
▲
by
rtsisyk
10y ago
Travis CI allow you to run any particular command, including Docker, on the top of their Ubuntu Precise/Trusty images. There is no way to choose other images from docker hub in the .travis.yml. Actually, PackPack is not just for Travis
12.
▲
Show HN: Build RPM and Debian Packages from git on Travis CI
(github.com)
3 points
by
rtsisyk
10y ago
|
3 comments
13.
▲
by
rtsisyk
10y ago
Medium.Com is totally broken for me: ``` HTTP/2.0 403 Forbidden Server: cloudflare-nginx <!-- CloudFlare Date: Sun, 24 Apr 2016 16:45:26 GMT Content-Type: text/html; charset=UTF-8 Set-Cookie: __cfduid=dbfe2964790ee51252ab642de2
14.
▲
by
rtsisyk
10y ago
I'm not TOR user.
15.
▲
by
rtsisyk
10y ago
Ohh, yes, CloudFlare. Sorry.
16.
▲
An Open Letter to CloudFare, a company who has broken the entire Internet
(gist.github.com)
14 points
by
rtsisyk
10y ago
|
9 comments
17.
▲
by
rtsisyk
11y ago
tarantool.org is an open-source project which is supported by my.com and many other commercial customers. my.com is an independent U.S. company that choose products on competitive basis. Anyway, the benchmark is fully open. If in doubt
18.
▲
Self-contained MsgPack serializer in the single header file
(github.com)
2 points
by
rtsisyk
11y ago
|
0 comments
19.
▲
Build RPM/DEB packages directly from GitHub sources
(github.com)
3 points
by
rtsisyk
11y ago
|
0 comments
20.
▲
ARM and ARM64 port of Tarantool database
(groups.google.com)
1 points
by
rtsisyk
11y ago
|
0 comments
21.
▲
by
rtsisyk
11y ago
Tarantool also plays well as an application server (with Lua or C procedures).
22.
▲
by
rtsisyk
13y ago
Yeah, had the same thought after viewing the albums. However, modern Beijing looks more capitalistic than U.S. and Western Europe cities: http://www.flickr.com/photos/romantsisyk/sets/72157633627597...
23.
▲
by
rtsisyk
13y ago
The library code is Lua 5.1 compatible (except bitwise functions in "operator" submodule, but it can be easily replaced with "bit32" or even removed). Some high-order functions heavily use recursion just to support multi
24.
▲
by
rtsisyk
13y ago
Yeah, the library has some common functions with "itertools" Python's module [1]. fun.range syntax was even copied from Python's range. What is more, you can also take a look on Haskell's Data.List [2] or StandardML
25.
▲
by
rtsisyk
13y ago
The initial idea was to make a functional library that works best with tracing JIT compiler. Functional paradigm on tracing JIT is the core innovation in the project. Lua 5.1 can run fun.lua after minor changes (I'll make patch soon),
26.
▲
by
rtsisyk
13y ago
There is a BIG difference between Lua Fun and Underscore. Lua Fun is based on iterators. High-order functions such as map, filter, etc. don't create temporary tables and don't allocate extra memory. Since all operations are perfor