Earlier quoted context omitted.
Oh man, I used to research in OCT for deep brain stimulation! It's pretty cool tech, that is for sure. It's got a huge market for bio applications and certain industrials. That said, optics is a super finicky field. You can come in and get a Nobel for 5 hours work, or you can spend 50 years in a dark room trying to get things together. Alignment is crazy difficult, thought it seems it shouldn't be. Anyone that wants…
Alignment should be done system-wide by orders of magnitude. If you are on a breadboard, get everything to within a cm of final location, then everything within a mm, etc. Don’t ever spend more than 1 minute at a time on any component. This stuff was not in the textbooks.
Ask HN: What startup/technology is on your 'to watch' list?
601–610 of 700 posts
Re: Ask HN: What startup/technology is on your 'to watch' list?
#602Earlier quoted context omitted.
can you explain why you think that?
Things like "It is the programmer's responsibility to ensure that std::string_view does not outlive the pointed-to character array." "string_view" is a borrow of a slice of a string. Since C++ doesn't have a borrow checker, it's possible to have a dangling string_view if the string_view outlives the underlying string. This is a memory safety error. Rust has educated people to recognize this situation. Now it's standa…
Re: Ask HN: What startup/technology is on your 'to watch' list?
#603You make the job 1000x harder to prevent a few lines of code! Just make the coding part easier.
Re: Ask HN: What startup/technology is on your 'to watch' list?
#604About [4]: The dumbest idea I've ever seen is to provide a platform to build software without writing code. You make the job 1000x harder to prevent a few lines of code! Just make the coding part easier.
Re: Ask HN: What startup/technology is on your 'to watch' list?
#6051. Cloudflare Workers, I don't have the bandwidth to experiment with it right now but it interests me greatly. https://workers.cloudflare.com/ 2. Rust - definitely will be the next language I learn. Sadly the coronavirus cancelled a series of meetings in Michigan promising to give a gentle introduction to Rust. https://www.rust-lang.org/learn
Utilized workers to create one of the fastest website analytics tool after Google Analytics: https://rapidanalytics.io (still in development).
Re: Ask HN: What startup/technology is on your 'to watch' list?
#606Oxide Computer Company https://oxide.computer/ “True rack-scale design, bringing cloud hyperscale innovations around density, efficiency, cost, reliability, manageability, and security to everyone running on-premises compute infrastructure.” Corey Quinn interviewed the founders on his podcast "Screaming in the Cloud", where they explain the need for innovation in that space. https://www.lastweekinaws.com/podcast/scre…
This probably would've accomplished the same goal, with a lot less overhead.
Re: Ask HN: What startup/technology is on your 'to watch' list?
#607Earlier quoted context omitted.
the other thing is https://roamresearch.com/ It's a text based wiki or outliner (collapsible text) thought a step further, with auto backlinks etc. Feels to me like a weaker org-mode, online with better cross-links/embeds (something that is indeed uncool in org. things can't live in two places at once)
There is org-roam, and it's getting better by the day: https://github.com/org-roam/org-roam
I'll need to switch from one biiiig file to multiple than though. I think my biggest hindrance is setting up the refile targeting :)
Re: Ask HN: What startup/technology is on your 'to watch' list?
#6081. Cloudflare Workers, I don't have the bandwidth to experiment with it right now but it interests me greatly. https://workers.cloudflare.com/ 2. Rust - definitely will be the next language I learn. Sadly the coronavirus cancelled a series of meetings in Michigan promising to give a gentle introduction to Rust. https://www.rust-lang.org/learn
I've done a couple neat (IMO) things with CF workers. - I use imgix to manipulate images in my app, but some of my users don't want anyone to be able to discover (and steal) the source images. Imgix can't do this natively; all image manipulation instructions are in the URL. So I put a CF worker in front of imgix; my app encrypts the url, the worker decrypts it and proxies. - A year ago, intercom.io didn't support per…
Would it be possible to share these scripts? I would love to see them, they sound really helpful/useful
Re: Ask HN: What startup/technology is on your 'to watch' list?
#609Earlier quoted context omitted.
There's a cloudron 1-click image on Digital Ocean
Which, as a regular user, I don't understand when I see it. Hell, I am a dev, and I still did not know that will let me create one quickly.
Re: Ask HN: What startup/technology is on your 'to watch' list?
#610The one that has me most excited on OP's list is Strapi. It's the only one that I see myself using in the very near future.
My one criticism is that the docs are always slightly out of date. I would love more flexibility in the queries i.e. being able to do advanced queries on multiple collections, rather than having to resort to raw SQL. It'll get there I'm sure.