Ask HN: What are you working on?
241–250 of 751 posts
Re: Ask HN: What are you working on?
#242Project: Distributed, trustless, anonymous, encrypted, messenger/mailer with the goal of hiding senders and receivers of messages. Also can't be brought down since it is distributed. Problem: Limited time to work on it. I have a working prototype with one-to-one, one-to-many, and many-to-many messaging/mailing working fully encrypted over ipv4. Building out the transport methods is the next main task (ipv4 works, nee…
Like Ricochet ( https://ricochet.im/ )?
Re: Ask HN: What are you working on?
#243Written with a Flask/Postgres backend.
Re: Ask HN: What are you working on?
#244Some minor issues are pending but besides that we are able to wire up end to end flow
Re: Ask HN: What are you working on?
#245I like to restore old (90's) computers for fun, and realized that if I wanted to actually use them for something, at the very least I needed a decent code editor that would run on them -- i.e. use at the very most 5-10 megs or RAM.
It's not 100% yet, but it's quite usable right now and works both in Linux and macOS. I actually had to fork the termbox library in order to get keybindings working correctly across different terminal emulators (xterm, urxvt, gnome/xfce term, OSX, etc).
Re: Ask HN: What are you working on?
#246Problem: My experience taking audio tours at various museums showed the use of antiquated and expensive hardware. Most alternate solutions used mobile apps which are inconvenient to download and take more time to release. Project: I went about developing a web app that allows anyone to quickly create an audio tour for free: https://www.youraudiotour.com/create I also integrated Amazon Polly to automatically generate…
This is awesome! Would be interesting to add BLE Beacon support for autoplay when you walk up to a specific area on the tour.
Re: Ask HN: What are you working on?
#247I'm working on Dullahan - an open source, headless browser SDK that uses the Chromium Embedded Framework (CEF). It is designed to make it easier to write applications that render modern web content directly to a memory buffer, inject synthesized mouse and keyboard events as well as interact with web based features like JavaScript or cookies. Currently working on Windows 32/64 bit and macOS 64 bit although there is st…
https://chromium.googlesource.com/chromium/src/+/lkgr/headle...
I am also curious regarding the timeline of your decision to implement this on CEF vs. the official headless support finally picking up steam around the same time (October 2016).
Keep up the good work!
Re: Ask HN: What are you working on?
#248We are searching for pilot clients who are willing to experiment with such a thing (while we also test/tune our software).
My email is in my profile.
Re: Ask HN: What are you working on?
#249Earlier quoted context omitted.
Thank you ! Backend is custom built written in C and assembly. Supports sharding and replication which is rack aware and data-center aware. > can third party sites integrate your search service? Yes of course.. that is the end goal. Algolia is awesome.. but you end up paying a lot based on how many ways you sort / rank data. This operates with an on-the-fly ranking model and rank on any field in any direction. Also d…
You tried any open-source ones in c/rust ? Are you doing anything differently/better (what/how) ? What are you using for replication/sharding ? Possibility to split-shards ? What are you using for server-backend-framework (ex seastar) ? Any libraries etc that you're using (i'm interested) ? You have to write a really long blog post on why you've chosen this way.
Got hooked into it and became obsessed with speed and rewrote everything in 'C'. Replication is based on 'Raft', actually the multi raft variant proposed by the amazing folks at Cockroach (https://www.cockroachlabs.com/blog/scaling-raft/)
It does not use a backend framework. It is a simple http/https server (epoll + multi-threaded) which talks json. I use Jansson for json and utf8proc for unicode handling. Index is custom built.
I have been working on low powered distributed systems for over 10yrs, which certainly helped. Will definitely let you know when I get that blog post written :)
Re: Ask HN: What are you working on?
#250Project: Distributed, trustless, anonymous, encrypted, messenger/mailer with the goal of hiding senders and receivers of messages. Also can't be brought down since it is distributed. Problem: Limited time to work on it. I have a working prototype with one-to-one, one-to-many, and many-to-many messaging/mailing working fully encrypted over ipv4. Building out the transport methods is the next main task (ipv4 works, nee…
I'm curious about your cryptographic schema. Are you using encryption-by-proxy to hide the sender/receiver? How are you making them anonymous?