Right now. WASM has been supported by every browser for a while now, and most webapps are made with WASM. That said, it's not a replacement for Javascript, most people only use it on things that need to be high performance like heavier apps and web games. Nobody really makes websites that rely on WebAssembly instead of JS to my knowledge.
popcar2
inexperienced big brain developer see nested loop and often say "O(n^2)? Not on my watch!"
complexity demon spirit smile
This hits too close to home.
There are two good options: Host your own blog yourself, or join a blogging platform that isn't corporate. I personally use BearBlog but I've heard good things about Write.as as well. These two have free blogging options and don't sell your data. If you want to host it yourself (which is safer), check out Hugo.
Ultimately, bots scrape the entire internet and there's no guarantee they will honor robots.txt of a particular website (which tells bots what they are and aren't allowed to do). If it's on the internet, people can scrape your content and there isn't much you can do about it. That shouldn't stop you from writing or blogging, just don't post very personal data.
Also, feel free to join us on [email protected]!
"Merge pull request #8 from [branch name]"
Not the most exciting but hey, someone has to do it.
I've reached a point where I avoid these types of updates. An update post like that either means nothing important changed or they're up to something.
A while ago I saw that style of patch notes, updated an app, and suddenly I can't use it anymore because it got limited to a maximum of 2 devices. Another time I updated an app putting a harmless "we improved the user experience" message, they put dark mode behind a paywall. This isn't counting the number of times an app got redesigned to make the user experience worse for no reason. Maybe they wanted to justify hiring 5 UI/UX interns in that quarter or something.
The patch notes look harmless, but my god, they are usually up to something.
-
git pull
-
git add *
-
git commit -m "Some stuff"
-
git push
And occasionally when you mess up
-
git reflog
-
git reset HEAD@{n} (where n is where you wanna roll back to)
And occasionally if you mess up so hard you give up
- git reset --hard origin/main
And there you go. You are now a master at using git. Try not to mess up.
FWIW not everyone using source control is a programmer. I've seen artists in game dev using GUI tools to pull new changes and push their assets.
Oh nice, do you have a link for where it was posted?
Technically you're right but the thing about AI image generators is that they make it really easy to mass-produce results. Each one I used in the survey took me only a few minutes, if that. Some images like the cat ones came out great in the first try. If someone wants to curate AI images, it takes little effort.
Are there any statistically significant differences between the different generators?
Every image was created by DALL-E 3 except for one. I honestly got lazy so there isn't much data there. I would say DALL-E is much better in creating stylistic art but Midjourney is better at realism.
Also WASM can't directly manipulate the DOM so it can't really be used for handling HTML/CSS, all front-end stuff still has to be done with JS.