The postmortem of the last 4 years should be analyzed deeply in order to identify the weak points in the infrastructure of our government in order to make improvements.
Trump has been a very effective chaos monkey.
The postmortem of the last 4 years should be analyzed deeply in order to identify the weak points in the infrastructure of our government in order to make improvements.
Trump has been a very effective chaos monkey.
Finally we ended up with Riya for my daughter (which is pronounced the same as the English name Rhea) and Aarav for my son, which is pronounced the same as two of the most common English words, "are" and "of."
Edit: I was able to find the output from the girl's name list. https://docs.google.com/spreadsheets/d/1Vy1dQunG4iie4H67En9T...
On RPi side I only had to get an RTL-SDR receiver and run https://github.com/merbanan/rtl_433 on the RPi itself to decode the data.
It was significantly cheaper than going with BLE or WiFi sensors.
Can you provide some links to temperature sensors you've tried that work well with an RTL-SDR receiver? I'm also interested in setting something up with a Raspberry Pi.
Mostly a small collection of posts about programming and personal finance. Also been running for around fifteen years.
Most popular post is about currency arbitrage, which seems to have had a small resurgence in interest as of late from various crypto folks: https://www.kelvinjiang.com/2010/10/currency-arbitrage-in-99...
Side note: not sure if it's just a funny coincidence, but it seems like a good number of folks here have been running their sites for around fifteen years. Perhaps the timing just happens to match the typical career arc of software professionals, or maybe it was due to the popularity of blogging fifteen years ago.
The article doesn't mention fishing knots; in case anyone's curious anglers care a lot about knot strength but strength changes based on whether you lubricated the knot when tying and what kind of line you used to tie it (braid vs smooth fluorocarbon for example).
My favorite fishing knot is the uni knot, which is a slip knot that can be used to join lines (double uni) or tie things to line. It's super strong but fishing knots aren't designed to be untied and always cinch down (vs climbing knots which can't collapse / strangle a person). Slipknots are very useful: I use a 3-wrap uni when I'm trussing thankgiving fowl for the oven!
There are some really cool fishing knot strength testing videos on YouTube. The line-to-line joining knots are my favorites -- people get heated debating the merits of the FG knot vs the alberto vs the double uni.
I personally prefer the Palomar Knot as it is probably the strongest knot that is also easy to tie. The Improved Clinch Knot and its brethren are also handy to know since there are so many variants that have high breaking strength; I typically teach the Improved Clinch Knot to folks new to fishing.
def parse(text):
stack = []
index = 0
result = None
while index < len(text):
char = text[index]
val = None
if char == '[':
stack.append([])
elif char == ']':
val = stack.pop()
index += 1
if val is not None:
if stack:
stack[-1].append(val)
else:
result = val
return result
Using the test utilities in the repo indicate that the parsing logic can handle arbitrarily nested arrays (e.g. up to the 5,000,000 max in the test script), bound by the limits of the heap.It seems like the main criticism here is against recursive implementations. Or am I missing something?
Reddit really is great for recommendations: is less impacted by SEO and marketing that most of the internet, upvoting captures the wisdom of the crowd, and comments usually provide context for their recommendation.
HN is similar actually, though much smaller.
On both looria and redditreads I find it interesting how the products recommended reflect the culture of each subreddit.
I'm also interested in starting up something similar for a particular niche, and would like to hear first hand accounts of the return on investment for aggregators such as these.