bubbab
|
1 year ago
|
on: React for R
Data visualization! Web is the go-to format for interactive data visualizations nowadays. This package is targeted at other package developers looking to integrate the abundant wealth of React-based data viz libraries into R. Check out
https://quarto.org/ for an example of a popular way users publish their data analyses as reports.
(This package isn't really meant to be used directly by the typical user)
bubbab
|
2 years ago
|
on: Liero – Sling'n'shoot Worms Game
Oh wow, a familiar name from the OpenLieroX days! Do you still do any Liero related work? OLX was like peak Liero for me, at least for the multiplayer community, clan wars and all that. Lots of good times back in the 2010s.
bubbab
|
3 years ago
|
on: PowerToys – open-source Windows utilities
I use PowerToys just for the easy key remapping, which I wish was a built-in feature in more keyboards. Works very nicely as a simple alternative to AutoHotKey. My RSI has gotten a lot better by just remapping Caps Lock to Ctrl.
If any PowerToys feature deserves to be added to Windows, it's gotta be the Keyboard Manager.
bubbab
|
4 years ago
|
on: Ask HN: What is your Git commit/push flow?
Messy WIP commits that are reorganized to cleaner commits later, like most others have said.
However, instead of rebasing, I often git reset to the beginning and recreate the commits from scratch, using partial file commits (or staged hunks). IDEs/editors like VS Code make it really easy to stage an individual part of a file for the commit. The CLI way (git add -p) has always been pretty confusing to me.
bubbab
|
4 years ago
|
on: My First 80 Days of VR for Exercise
Not really a midpoint, but more on a similar level to Index. Generally, people like Index more than the Vive Pros on most points (display, audio, controllers, etc.) except for the wireless capability, and some niche features like eye tracking on the Vive Pro Eye. If you want a wireless high-end headset, Vive is the only game in town (Index is wired-only) so you have to get a Vive. It'll end up being more expensive than Index because the wireless adapter is $350. Since the Vive Pros and Index share the same tracking system, people do mix and match equipment other than the headset though. Many people will buy a Vive Pro headset and use Index controllers with them, since they're better. Index users will buy Vive trackers for full-body tracking because nothing equivalent exists for the Index.
bubbab
|
4 years ago
|
on: How I, as someone who is visually impaired, use my iPhone (2020)
bubbab
|
4 years ago
|
on: Accessibility is the hardest thing for me about making things for the web
For me, the biggest hurdle has been education and awareness. At least a few years ago, the courses and resources I used to learn about web development didn't cover accessibility, and I had to learn about it after the fact. I'm glad to see more introductory resources cover it now though, like the MDN docs and web.dev.
bubbab
|
5 years ago
|
on: Show HN: Grid.js – Advanced table library that works everywhere
How accessible is Grid.js? The main differentiator between table libraries for me these days is accessibility. Many libraries and frameworks out there do it poorly. The better ones are often tied to company-specific frameworks.
From playing around a bit, I've at least noticed that sortable headers have no focus indicator, the "sort column ascending" text gets included in the column's accessible name, and un-sortable column headers are read as clickable by screen readers.
I would LOVE a framework-agnostic table library that's both lightweight and fully accessible. If there's a chance for Grid.js to take this in its philosophy, I would be all in!
bubbab
|
5 years ago
|
on: Nitrome to convert its Flash game library to HTML5
I did not know about Nitrome, but wow I love the site design!
On a related note, Neopets has also been migrating their huge catalog of Flash games to HTML5 over the years. I have no idea how that's going though.
bubbab
|
5 years ago
|
on: Liero can be played in browser now, for those who remember
Thanks for developing OpenLieroX. That was peak Liero for me, with smooth network play, tons of mods, and an active competitive community.
bubbab
|
6 years ago
|
on: React Table is a “headless” UI library
React Table is soo good for making your own table library. The flexibility is insane, even in the previous version where you had render props + prop getters. I love the idea of headlessness in v7, although I'm kind of dreading the migration from v6 -> v7 :)
bubbab
|
6 years ago
|
on: An R interface to jExcel library to create web-based interactive table
It's a web application framework for R, not a turnkey solution or an analysis platform. It's for R users who want an easy way to build a web app in R without having to know much about web development or other languages.
If you want to productionize your web app, you could put it behind a reverse proxy, add authentication, etc. just like with any other web framework. The turnkey solution would be products that do this, like Shiny Server and ShinyProxy.
(This package isn't really meant to be used directly by the typical user)