HackerTrans
TopNewTrendsCommentsPastAskShowJobs

actionowl

no profile record

Submissions

Do you use Rackspace? Have you had to call to delete a VM?

3 points·by actionowl·6 ปีที่แล้ว·1 comments

comments

actionowl
·5 ปีที่แล้ว·discuss
This is true for iTunes and Google Play too, I've had albums disappear from my Library with no explanation (I suspect some licensing change or label shuffle behind the scenes). I've totally abandoned streaming services since I've been bitten twice by this.

Bandcamp handles this exceptionally well, you can download anything you buy (even as Flac!) and for anything else, it's back to buying/checking-out CDs and ripping them old-school style.
actionowl
·5 ปีที่แล้ว·discuss
I recall someone (I think on HN) state that they created landing pages like you describe _before_ creating a product to see if the idea has enough interest to start on the project and they reported good results. So by that account, it doesn't sound like a bad idea.
actionowl
·5 ปีที่แล้ว·discuss
> I tend to listen to music with no lyrics or with lyrics in languages I don't understand because it lets me program without becoming distracted.

This! When I started programming full time my music interests started shifting into what they are today which is just that. Either music with no lyrics or are mostly in a foreign language to prevent being distracted by it.
actionowl
·5 ปีที่แล้ว·discuss
I can't help but be reminded about this open source software license comic: https://burntsushi.net/stuff/wtfpl-strip.jpg
actionowl
·5 ปีที่แล้ว·discuss
Last.fm is from the UK, and while it doesn't seem that groundbreaking of thing, they've been around quite a while and most streaming services almost certainty took ideas from what they did w/ music suggestions and such.
actionowl
·5 ปีที่แล้ว·discuss
If you fancy posix shell (and C/C++ support) https://github.com/jmmv/atf/
actionowl
·5 ปีที่แล้ว·discuss
Where you were born, or at least the strength of your country's passport has a huge impact[0]

Depending on your passport's strength you may get visa on entry, have to apply for a visa, or can't go to a specific country at all.

[0] https://www.passportindex.org
actionowl
·5 ปีที่แล้ว·discuss
I've been a long-time in-browser slack user and yesterday Firefox refused to open any slack link, bookmark, or history entry I had. Closing all my tabs and relaunching FF did not help either.

In a pinch I installed the desktop app, and once I had a little bit of spare time I googled around and figured out the issue. Which was that Slack had used 2GB of Cookies/Site Data and Firefox neglected to notify me of that and that appears to be a hard limit and prevent Slack from loading. Clearing the data resolved the issue.
actionowl
·5 ปีที่แล้ว·discuss
Using a contact form that sends you an email server-side is a good one, that way they never have your email (unless you respond).

I also had a static website at one point where I didn't want to add server-side processing for a contact form so I stored the email address obfuscated in javascript like:

  ["m","o","c",".","l","i","a","m","e","@","e","m"].reverse().join('')
and injected it into the page. It seems that most scraper bots don't execute javascript and with it split into an array they likely won't find it by scraping the js files either.
actionowl
·6 ปีที่แล้ว·discuss
yes, with caveats

It's a private company. If they were unable to host their own servers, and no ISP would give them an IP address then that is a problem as long as they're following the law.

Maybe if this happened a little more often less companies would go all in on Cloud services.
actionowl
·6 ปีที่แล้ว·discuss
Can suggest this as well, also I might suggest using Terraform.

The Console hides/obfuscates some things, w/ Terraform how resources are linked and work together become much more clear.
actionowl
·6 ปีที่แล้ว·discuss
If you have customers with servers, then surely (hopefully) someone remotely technical manages them but I've found that technical expertise varies greatly and in my experience not many customers have interest in taking on the install/maintenance of said software.

You basically need something as easy to install (and update) as Google Chrome or you have to do the install and maintenance yourself (trust me on this, it's a huge time suck and customers can have all kinds of weird setups).

My "favorite" memory was a customer who ignored our request for a dedicated VM to install our web software onto. They neglected to tell us that this system already had a service running that used port 80/443 and somehow we were able to get through our install and take over that port without breaking the application but one day the server rebooted and our app got the ports before the other app. What was that app? It was their access control software that let people enter the building... whoops!
actionowl
·6 ปีที่แล้ว·discuss
You might have just convinced me to buy a bread machine...

To add a similar answer, only in the past couple of years have I had a nice rice cooker (we have a Zojirushi) that keeps the rice fresh for ~12 hours. It is irreplaceable at this point (My wife is Asian and rice is a part of pretty much every meal.) Best appliance I have ever bought, gets used every. single. day. and have rice ready-to-eat throughout the day.
actionowl
·6 ปีที่แล้ว·discuss
Came here to say the same thing.
actionowl
·6 ปีที่แล้ว·discuss
No, but in our case, moving the sensitive data to a table queried less frequently than one used as a queue shrinks our logs considerably.
actionowl
·6 ปีที่แล้ว·discuss
Just one data point, that might be of use to know:

We're currently running into an issue where we've used a table as a message queue in a database.

We gained a compliance requirement that we must log all access (including direct DB queries) to certain info in the database. One of the tables being used as a queue contains this data and is polled hundreds of times per minute making our logs ridiculously huge and we now have to move the queue somewhere else and/or split up the data.
actionowl
·6 ปีที่แล้ว·discuss
I'll be honest, I thought this was really silly at first from scrolling through the linked blog post but when working in a significantly different timezones as I have in the past (12 hours), this could be pretty convincing. It might be hard to sell my team on something called "weet" but I'm going look through the privacy policy and I might actually give this a try...
actionowl
·6 ปีที่แล้ว·discuss
Got married, submitted adjustment of status forms, received notice of action 1, waiting for biometric appointment.
actionowl
·6 ปีที่แล้ว·discuss
Do you think the new administration will have an impact on immigration and if so, what do you think will change?

My wife and I have been waiting since July on an update to her K1 adjustment of status. Some of that is COVID related issues, but I suspect some of the delay is due to additional processing of the new requirements (e.g. I-944).
actionowl
·6 ปีที่แล้ว·discuss
Multi-AZ doesn't help when a whole region is down, unless you're referring to multi-region AZs (e.g us-east-1a and us-west-1a)