HackerTrans
トップ新着トレンドコメント過去質問紹介求人

xtreak29

no profile record

投稿

AI usage in popular open source projects

tirkarthi.github.io
1 ポイント·投稿者 xtreak29·5 か月前·0 コメント

Generative AI and Healthy Skepticism

tirkarthi.github.io
1 ポイント·投稿者 xtreak29·11 か月前·2 コメント

Apache Airflow 3.0 Release

airflow.apache.org
19 ポイント·投稿者 xtreak29·昨年·2 コメント

Apache Airflow 2.10.0 is here

airflow.apache.org
1 ポイント·投稿者 xtreak29·2 年前·0 コメント

Apache Airflow 2.9.0 Release

airflow.apache.org
2 ポイント·投稿者 xtreak29·2 年前·0 コメント

Show HN: An open source dictionary app to show meanings as notifications

play.google.com
2 ポイント·投稿者 xtreak29·3 年前·0 コメント

New JSON query operators in SQLite 3.38.0

tirkarthi.github.io
397 ポイント·投稿者 xtreak29·4 年前·33 コメント

コメント

xtreak29
·2 か月前·議論
Bun is moving towards rust but does this also help bun's compilation times?

https://ziggit.dev/t/bun-s-zig-fork-got-4x-faster-compilatio...
xtreak29
·5 か月前·議論
Reviewing code was also a big bottleneck. With lot more untested code where authors don't care about reviewing their own code it will take even more toll on open source maintainers. Code quality between side projects and open source projects are different. Ensuring good code quality enables long term maintenance for open source projects that have to support the feature through the years as a compatibility promise.
xtreak29
·4 年前·議論
https://stackoverflow.com/q/3177338
xtreak29
·4 年前·議論
There seems to be an issue open for this https://github.com/simsong/tcpflow/issues/58
xtreak29
·4 年前·議論
Does aioboto3 help here?

https://aioboto3.readthedocs.io/en/latest/usage.html#upload
xtreak29
·4 年前·議論
Some breakdown and comparison over the years https://meta.m.wikimedia.org/wiki/Wikimedia_Foundation_salar...
xtreak29
·4 年前·議論
https://streamlit.io/ is good for quick interfaces with components.
xtreak29
·4 年前·議論
You can get top PyPI package source using https://github.com/hugovk/pypi-tools/blob/main/repo_checker....

https://github.com/hugovk/pypi-tools

https://github.com/hugovk/pypistats
xtreak29
·4 年前·議論
Probably a reference to https://news.ycombinator.com/item?id=32531141
xtreak29
·4 年前·議論
Some discussion on this in PostgREST repo

https://github.com/PostgREST/postgrest/issues/1214
xtreak29
·4 年前·議論
I used rewriting as a learning experience. I found flutter to be simpler with respect to UI and state management compared to using XML by default for UI. Since mine was a crud app flutter was okay. I later found jetpack compose which has flutter like UI composition and I liked it better since I can access the existing Android library ecosystem too.
xtreak29
·4 年前·議論
I too wrote a similar app for my personal problem and also served to be a good way to learn about kotlin and Android ecosystem. I also tried a rewrite in flutter and compose. The idea was to use select the word and then click meaning from context menu so that meaning occurs as notification and disappears in 15 seconds. I used Wiktionary as dataset source and app works offline.

https://play.google.com/store/apps/details?id=com.xtreak.not...

https://github.com/tirkarthi/NotificationDictionary
xtreak29
·4 年前·議論
GitHub repo : https://github.com/readysettech/readyset
xtreak29
·4 年前·議論
There was a similar PEP https://peps.python.org/pep-0505/
xtreak29
·4 年前·議論
If you have the openapi spec then tools like below might help

https://dev.to/danielgtaylor/a-cli-for-rest-apis-part-1-104b https://github.com/danielgtaylor/restish https://github.com/danielgtaylor/openapi-cli-generator https://github.com/OpenAPITools/openapi-generator
xtreak29
·4 年前·議論
Thanks, your sqlite-utils and other libraries have been very helpful.
xtreak29
·4 年前·議論
Discussion: https://sqlite.org/forum/forumpost/d61880668db1a8f4
xtreak29
·4 年前·議論
Thanks
xtreak29
·4 年前·議論
In case of PostgreSQL there is json and jsonb. For SQLite, hexdump of the database shows text representation and seems to be stored like json than jsonb. I am not aware of the full design and source code but it seems some functions parse and cache the JSON representation.

https://github.com/sqlite/sqlite/blob/a0318fd7b4fbedbce74f13...

https://www.postgresql.org/docs/current/datatype-json.html

> The json and jsonb data types accept almost identical sets of values as input. The major practical difference is one of efficiency. The json data type stores an exact copy of the input text, which processing functions must reparse on each execution; while jsonb data is stored in a decomposed binary format that makes it slightly slower to input due to added conversion overhead, but significantly faster to process, since no reparsing is needed. jsonb also supports indexing, which can be a significant advantage.
xtreak29
·4 年前·議論
It seems readfile is from an extension but present in cli. json_each is present in standard sqlite core from 3.38.0 as json1 extension is also now part of core.

json_each : https://www.sqlite.org/json1.html#jeach

readfile : https://sqlite.org/cli.html#file_i_o_functions

> Note that the readfile(X) and writefile(X,Y) functions are extension functions and are not built into the core SQLite library. These routines are available as a loadable extension in the ext/misc/fileio.c source file in the SQLite source code repositories.