Discover and read the best of Twitter Threads about #HTML5

Most recents (14)

Today's Twitter threads (a Twitter thread).

Inside: Private equity finally delivered Sarah Palin's death panels; and more!

Archived at: pluralistic.net/2023/04/26/dea…

#Pluralistic

1/ An industrial meat grinder,...
Tonight (Apr 26), I'll be in #Burbank at @DarkDel at 6PM with my new book, *Red Team Blues*:

darkdel.com/store/p2873/We…

2/ Image
From Apr 26-28, @BNBuzz is offering a 25% discount on preorders for my upcoming novels (use discount code PREORDER25):

The Lost Cause (Nov 2023)

barnesandnoble.com/w/the-lost-cau…

The Bezzle (Red Team Blues #2) (Feb 2024)

barnesandnoble.com/w/the-bezzle-c…

#BNPreorder25

3/
Read 29 tweets
Today's Twitter threads (a Twitter thread).

Inside: Mass tech worker layoffs and the soft landing; Hey look at this; and more!

Archived at: pluralistic.net/2023/03/21/tec…

#Pluralistic 1/ A group of firefighters holding a safety net under a buildin
Tomorrow (Mar 22), I'm doing a remote talk for the @IFTF's "Changing the Register" series:

iftf.zoom.us/webinar/regist… 2/
Mass tech worker layoffs and the soft landing: Finally, the non-tech sector can hire technical workers.

3/  Image: University of North Texas Libraries (modified) https
Read 26 tweets
Today's Twitter threads (a Twitter thread).

Inside: Podcasting "Gig Work Is the Opposite of Steampunk"; and more!

Archived at: pluralistic.net/2023/03/19/lov…

#Pluralistic 1/
Today (Mar 20), I'm doing a remote talk for the @Ostrom_Workshop's Beyond the Web Speaker Series

iu.zoom.us/meeting/regist…

On Weds (Mar 22), I'm doing a remote talk for the @IFTF's "Changing the Register" series:

iftf.zoom.us/webinar/regist… 2/
Podcasting "Gig Work Is the Opposite of Steampunk": Why today's Luddites should be smashing apps.

3/  Image: Cryteria (modified) https://commons.wikimedia.org/wi
Read 38 tweets
Today's Twitter threads (a Twitter thread).

Inside: Spirit warned investors that merging with Jetblue would be illegal; and more!

Archived at: pluralistic.net/2023/03/12/the…

#Pluralistic 1/ Image
Spirit warned investors that merging with Jetblue would be illegal: Exhibit A for the prosecution.

2/ Image
Hey look at this

* Freely readable 2023 #NebulaAwards nominees superpunch.net/2023/03/links-…

* Why Weren't #SiliconValleyBank Depositors Using CDARS? creditslips.org/creditslips/20…

* Users, advertisers – we are all trapped in the net's ‘#enshittificationtheguardian.com/commentisfree/… 3/ Image
Read 20 tweets
Today's Twitter threads (a Twitter thread).

Inside: Google's chatbot panic; and more!

Archived at: pluralistic.net/2023/02/16/twe…

#Pluralistic 1/ Tweedledee and Tweedledum, standing at the bottom of Humpty
This is the last day (Feb 17) of my #Australian tour for my book #ChokepointCapitalism with my co-author, #rgibli. We'll be in #Canberra at the Australian Digital Alliance Copyright Forum:

digital.org.au/2022/11/08/doc… 2/
Google's chatbot panic: On the infinite insecurities of a self-styled creative genius who really just buys other people's ideas.

3/  Image: Cryteria (modified) https://commons.wikimedia.org/wi
Read 25 tweets
Mobile tech is a duopoly run by two companies - Google and Apple - with a combined $3.5T market cap. Each uses a combination of tech, law, contract and market power to force sellers to do commerce via apps, and each extracts a *massive* commission in-app sales - 15-30%! 1/ London's Canary Wharf, a hi...
If you'd like an essay-formatted version of this thread to read or share, here's a link to it on pluralistic.net, my surveillance-free, ad-free, tracker-free blog:

pluralistic.net/2022/12/13/kit… 2/
This is bad for users and workers. Many companies' gross margins are less than 30%. In some categories, that means there's *no* competition. 3/
Read 53 tweets
[#THREAD — 1/11]
In 2015, we created a game around an animated 3D map.
A little exclusive #MakingOf of how we built it.

#3dart #HTML5 #casestudy #sotd
-
If you like this kind of #thread, please like & share the love !

🧵👇
[#THREAD — 2/11]
The concept is inspired by the game "🔎 Where’s Waldo".

We wanted to push it a bit further by creating a fully animated 3D map 🗺️, with a profusion of 2Dcharacters 🧍‍♀️🧍🧍‍♂️.

This mix of 3D and 2D gives a unique look to the game and saves a lot of production time
[#THREAD — 3/11]
To create this illustration, we made a first 3D topography, based on first ugly sketches 😅.

(It's not the latest version, it's from 7 years ago...)
Read 11 tweets
From today I'm starting posting contents related to Web Development and Computer Science in general. Hope you'll like it and share it.
#javascript #webdeveloper Image
Global Execution Context
#javascript #webdevelopment Image
Read 54 tweets
Here's a complete roadmap of topics to master VueJS

A Thread 🧵

#vue #vuejs #100DaysOfCode #webdevelopment #webdev #programming #coding #javascript #HTML #HTML5 #CSS3 #CSS #programming
1⃣ Prerequisite
- #HTML / #CSS Basics
- Basic #Javascript Concepts ✌️
2⃣ Vue Basics
- What is Vue
- Component Basics (Template, script, data, methods)
- Handling User Inputs
- Conditionals and Loops
- Computed properties and watchers
- Class Bindings (CSS Classes) 😀
Read 11 tweets
Quick Tweet Storm ⛈

How does AI bounding box detection work?

🧠 Learn in 30 seconds

#100DaysOfCode #CodeNewbie #MadeWithTFJS #MachineLearning #ComputerVision Image
It looks so simple when #AI does it right?

But #machinelearning doesn't give you an image, it gives you data. It's up to you to make it look simple. Image
You might think a #FrontEnd box gives you four values, and you're right, but it only gives you TWO points. From that you can infer a box to draw with #html5. Image
Read 9 tweets
I’m currently working on a poc for my app.

It uses @BevyEngine, @dimforge’s rapier physics engine both compiled to #WebAssembly and #React for the GUI. I had to do some nasty things to make this work. Read below

#rustlang #gamedev #html5 #blockchain #nft #gaming #playtoearn
So first of all there are basically two approaches how you could implement a GUI for your WASM game. Either write it in the same language as the game itself. This would result in it being rendered via WebGL in the same canvas, or you could somehow try to connect a JavaScript lib
I chose the 2nd approach, because it allows me to develop the GUI much faster. I love Rust, but prototyping and reloading cycles are way faster with JavaScript. Bundling that WASM debug file with @webpack takes a painful amount of time, which brings me to another point.
Read 10 tweets
4 years ago I started implementing an entire #linux #wayland display server in the browser because "wouldn't it be cool if ...", but I never really shared my experiences that eventually lead me to implement a #kubernetes powered cloud desktop computer. 🧵👇
I'll try to keep these posts chronologically but most comes from memory so I apologize in advance. ;)
It basically started with a discussion in #wayland on #irc where it was suggested that one should use (s)rtp for real time video stream. The browser lacking such things, only offers WebRTC so first thing was to check if that could be utilized.
Read 31 tweets
Preventing Cross-Site Request Forgery(CSRF) attacks - auth0.com/blog/cross-sit…

#security #websecurity #sec #infosec
what is Cross-Site Request Forgery?

it is a type of attack performed on web apps in order to carry out a malicious action without user's explicit consent.
these 'malicious actions' could be anything. for example: changing email address, personal information etc

#websecurity
how it is performed?

* attacker leads the user to perform an action(through email, website etc)

* attacker makes a request on behalf of the user(by using a hidden form, for example)

* vulnerable website sees it as a genuine action(by verifying session cookie)

#CodeNewbie
Read 8 tweets
Here's what happens when the combined prowess of #CSV #RDF intersect i.e., generation of a #SemanticWeb of #LinkedData visualized using our #HTML5 #PivotViewer: linkeddata.uriburner.com/HtmlPivotViewe…

This is an utlra flexible visual drill-down :)

#DataVisualization #GraphDatabases #RDBMS
Here's a post that explains how our #HTML5 #PivotViewer functions in conjunction with #SPARQL re. powerful #DataVisualization that leverages a #SemanticWeb of #LinkedData.

Link: medium.com/virtuoso-blog/…

#GraphDatabases #DocumentDatabase #NoSQL #RDBMS
Read 3 tweets

Related hashtags

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3.00/month or $30.00/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!