Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BA
Posts
5
Comments
31
Joined
1 yr. ago

  • Thanks for all the hard work. I’m particularly enjoying the compact comments. I just realised there’s quicklook for images in comments, which is really handy. Is that likely the same implementation for the upcoming media viewer?

    EDIT: on messing about further, it’s the same interface for post pictures as well. I like it!

  • For blocking YouTube ads, I cannot recommend Vinegar more. It’s a safari extension that replaces the default YouTube player with a standard HTML5 video tag. Which means all the functionality of iOS videos (PiP, backgrounding, scrubbing) and no ads.

  • Non- tech: I’m a psychiatrist, generally working with offenders in hospital and prisons. The clinical work is always interesting, and im usually thankful for openness at which people spill their life stories to me.

    Tech: I’ve kinda thought myself software development since I started working as a doctor. There’s just too much inefficiencies in the way we work clinically day-to-day due to the sheer amount of defensive practice inherent in the health system. Started off with personal tools to “assist” the electronic systems in place. But since then I’ve launched and maintained a number of digital clinical tools in a few local hospital which I’m pretty proud of.

  • Eating bitterness (吃苦) is a phrase that really brings me back to my time growing up in east Asia. However it seems older generations believing their offspring are too weak / spoilt to handle what they themselves have gone through appears to be a pretty universal thing.

  • For the backend I used the ADO library to create a MSAccess DB on a shared network folder. Then it’s a matter of using VBA to generate SQL commands to same library to read / write records from the DB.

    For the frontend, I use VBA to generate a HTML document from the fetched data. For the IE control in a user form, you can then write the HTML to it. During this process you can bind local VBA variables to any of the html elements in the page.

    A common flow would be:

    • User clicks an element in a table
    • simple JS on the page does some calculation, stores a value in a hidden input and clicks it.
    • the user form variable detects the click in the monitored element, reads the changes, and acts on it.

    I also have VBScript to act as the launcher by copying the excel file to the local machine, and launching the local copy. This solves the concurrency issue.

  • I can really emphasise with Samir. Working in healthcare I’m basically limited to just the Office applications. However in the past few years I’ve been able to cook up solutions by reading / writing to file based databases, and using VBA to generate and bind to HTML contents on the fly for the built in IE11 instance. It’s as close to getting to some kind of web-stack within the confines of IT Sec in healthcare.