We have a NEW and tested vidicon, and others that we can test in a newer Motorola camera, so that's a plus.
In the past we gotten several HP 5061B cesium beam atomic clocks[2] back from the dead, so we'll get there eventually.
471–480 of 514 posts
We have a NEW and tested vidicon, and others that we can test in a newer Motorola camera, so that's a plus.
In the past we gotten several HP 5061B cesium beam atomic clocks[2] back from the dead, so we'll get there eventually.
I'm working on making natural-sounding text-to-speech widely available. Specifically targeting normal people, not companies/developers. It's going to start with me picking the content, but I'd like to make it possible to have pretty much any text someone finds converted into a voice that is nice to listen to.
Started playing with GPT3, and building services on top of it. I built what I believe is a compelling service (unfortunately if I monetize it, it'll probably be replaced by openAI easily)
I'm continuing work on the No Bullshit Guide to Statistics, which is an introductory book on statistics that includes all necessary prerequisites (practical data analysis using Pandas and probability theory math using the computer models from scipy.stats). It's been a many-year project (because STATS IS TOUGH!), but I've had very good progress in the last couple of months of 2022 (finished first few chapters) and now…
This sounds excellent. Will be keeping an eye on this. As I've been spending more time doing data viz recently, I've started to realize how little I remember about stats from college and am having to study back up. Unfortunately, the resources I've found have left much to be desired. My best bet at the moment seems to be going through MOOC courses to essentially retake my stats courses. But your guides here seem much…
Yeah most textbooks out there are pretty bad (aim to cover the standard curriculum, which is not very useful for most practical statistical analysis tasks).
Recently however, there has been a growing number of teachers/educators adopting the "modern statistics curriculum" based on resampling methods (bootstrap estimation and permutation tests), so you should look for those if you want a review that is more friendly to learners with a coding background.
I have another google doc where I've saved the best links to learning resources, you might want to check out while waiting for the book (it might take a while!): https://docs.google.com/document/d/1GWyuNC4qCL5ecYSoY6GxvuhO... In particular the talks by Vanderplas and Downey in the section "Tutorials > Resampling methods" are all excellent.
Also, here is a four-part video tutorial + notebooks that I prepared, which gives an overview of all parts of modern curriculum (from data management, through prob theory, to stats modelling): https://nobsstats.com/stats_overview/README.html
I’m building a hostingplatform for fully managed Wordpress sites. By managed I mean both the WP install, but also plugins, themes and other customizations. I have a customer who does marketing, SoMe, SEO and all that (as a small business for other small to medium businesses) but it turns out she spends a lot of time dealing with tech issues from WP sites (plugin update errors, other tech issues the hosting provider d…
WP has become a gigantic ecosystem with its own sub-ecosystems and specializations that pertain to those ecosystems at this point. Seeing it as a 'Linux ecosystem, but as a web app' would be a better way to understand the landscape. Therefore, you should definitely try to learn more about WP because:
> But it has always seemed crazy to me how everyone in the “WP space” seems to be making changes directly in prod o_O
...even starting from the need to understand that, there are a lot of things to understand. People make changes directly to prod because making WP high available is very difficult due to the HA-enabled infra that is out today not supporting stateful workloads well, hence its difficult to have dev, staging, prod deployments etc. Especially because a change in plugin code or setting (an update, changing a setting etc) may trigger database changes and one wont work without the other.
And when you end up setting up one, it comes out way too expensive for any individual or small business to afford paying for it. As opposed to a managed, non-HA WP hosting provider allowing you to host a WP site that handles million or more visitors every month for $45 as opposed to having to pay $200-300 for a HA setup so that they wont make changes in production and they will have copies of their site running. Which, they can also do by buying another $45/month hosting and duplicating their site behind an IP-gating etc by the way.
WP site owners use plugins to make happen what they want to make happen, and a lot of these plugins need to be able to modify files in the filesystem to be able to work their magic. This ranges from being able to resize thumbnails to creating sitemaps to more complicated ecommerce application needs. Some need to modify .htaccess in order for a major feature to work. Others may need to modify the config file to add something etc.
And at that moment the whole containerization, docker, deployments, multiple environments thing hit the wall: If all the plugins are built into the container, they wont be able to modify the filesystem, especially their own files when needed. Which is a game breaker for any average WP site owner.
You could use an NFS to mount the wp-content folder, and that would fix a LOT of your issues. However, cheap, reliable managed NFS offerings are extremely scarce. And what's there is expensive. So you will end up having to rack up the price to a point where most people wont want to pay.
Even when you solve that, you still have problems - you are now building the WP core into the containers, and therefore are able to deploy automatic WP version updates and also having improved performance, great. But what will happen when you deploy a WP version update that breaks various important plugins because they are not compatible with that version yet? Boom. Upset users. A broken plugin and feature is most of the time is as bad as your entire site being broken.
You could prevent users from installing plugins and you could offer a selection of plugins that the users can use. Assuming that you solved the NFS problem. Then you could avoid version conflicts, compatibility issues. But then many users wont use your service because they cant install the plugins they want. You could have a market like that and a lot of web agencies do that apparently, but they are for their clients with specific needs who wouldnt need anything more freeform and complicated like most of the WP users do.
...
The best fit on the market for solving all of these is Google Kubernetes Engine + Google Filestore + Google Cloud SQL. (people complain about AWS nfs offering having spotty performance - bad for WP). But Google egress charges literally kill any chances of Google having any foothold in the WP ecosystem because with their outrageous egress pricing, a small WP site owner that hosts a middling WP site for $25/month would have to pay another $15/month for egress traffic costs on average, and that makes google double or triple more expensive for out-of-the-box WP compatible web hosts right from the start. And that's a variable price too - no WP site owner would want to pay a surprise $100 in a random month because their site has had more traffic suddenly. Standard WP hosts can provide everything from cpu/db to traffic costs even for a million visitors for $50/month fixed.
So anyone who builds any WP SaaS or consumer grade hosting at Google infra would have to start with 3-4 times more expensive compared to all other offerings when they add their own profit margin.
If you end up choosing to not allow users install plugins and themes, using WP multisite could be much better for your setup - it acts as a singular WP installation that can host an infinite amount of WP sites inside itself, with various plugin bundles activated/deactivated for different packages. You can build this into a container, and if you don't have any plugin that needs to use the filesystem, you can even deploy it in K8 in front of a managed DB and with the media uploads sent to some S3 compatible storage or something. (That requires custom code).
Also - nginx is not a good choice for WP. A large swath of WP plugins require .htaccess to be present and accessible for adding custom rules for their features, and this makes Apache the better candidate for such a situation. Apache with event mpm and php-fpm behind it is as performant as nginx these days, so you can just slap Apache and not ever have to deal with the rewrite rules that your customers will be asking you to add to nginx rewrites.
A music magazine to help artists and musicians not starve, and to sing the gospel psychedelic.
I’d love to hear more and how you’re doing that?
- A browser extension for HN written in WASM (Rust)
- A book about NixOS
- Want to finally set a start up, hopefully, I'll have something to show within 2 months
I also have a newsletter for my blog [0]. If you wish to track the progress on the mentioned items, feel free to subscribe, that would be highly appreciated. Btw, people are subscribing, but many have not confirmed their subscription (newsletter is double opt-in).
Earlier quoted context omitted.
Great question! Its one of the things where Im very curious to see if my plans hold up when they meet reality. I plan to solve it my a mix of process and multiple environments: 0) Base assumption is that Im starting from a working site and everything that may break it is going to be a change to the working site. 1) Every live/prod site will have a test environment. Like test.example.com 2) (process) The customer that…
Have you checked out caprover? It's sort of an all-in-one app platform, self-hosted app installer w/ one click docker installs for WP, Analytics, etc.
Earlier quoted context omitted.
If you post proposals for change, rather than why everything sucks, you may have better reception. The internet is full of armchair cynics who like to talk about how everything sucks. But few people are actually out there trying to impact a change, even if just in the form of ideas. This is not a criticism of you by the way, just an observation of what I've found actually works. By my nature I'm pretty cynical but I…
The problem is that there are solutions available (e.g. blockchain and the decentralize movement) but those which managed to get attention in the early days were soon corrupted by the current system to serve the current system. Then the movement proceeded to discredit itself through intentional, repeated scamming of customer funds. I think there is a chance that SBF of FTX will not go to jail because he is working fo…
Legally speaking, there is no chance SBF wouldn’t do time, with a big probability of doing a lot of it. The mousie looking lady will also get it but it depends how much the feds got on SBF and if they need her or not.
I am working on actually beginning doing something with my photography. It has been a hobby/passion of mine for 7+ years, but so far I do not really do much with the final images. I put them on my private Flickr as a backup and upload the highlights to Instagram, but that's it. I feel like Instagram is a hard medium because the photos that are trending are mostly the same overdone and oversaturated landscape or trave…
If you mean it seriously with photography, make a personal portfolio with top notch pictures. Abandon posting on instagram as soon as possible.