10 votes

What programming/technical projects have you been working on?

This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

5 comments

  1. Artemix
    Link
    I've worked on a web UI to manage bare git repositories on a server. Basically, I wanted to be able to create/mirror repositories, edit their category / description / main reference pointer, and...

    I've worked on a web UI to manage bare git repositories on a server.

    Basically, I wanted to be able to create/mirror repositories, edit their category / description / main reference pointer, and to rename and delete them.

    Since using something like gitea is simply completely overkill for hosting my repositories, I instead kept my gitweb/git-http-daemon setup and moved towards building another tool that would sit on top of my git repository storage.

    Single 2.5MB~ golang binary, deployed behind an authentication-enabled reverse proxy.

    4 votes
  2. Varth
    Link
    I got iMessage working on my Android phone last night by setting up a BlueBubbles server on an old 2011 Mac Mini I got from work. So far, so good! It will be useful for sending media to and from...

    I got iMessage working on my Android phone last night by setting up a BlueBubbles server on an old 2011 Mac Mini I got from work. So far, so good! It will be useful for sending media to and from other artists and my family, all of whom are on iPhones. It was a fun project and I'm glad I was able to keep some old hardware out of the landfill for a bit longer.

    2 votes
  3. admicos
    Link
    Made a "binding" of the Vosk speech to text thingy for Tasker. It's my first Android thing in a long time now and honestly I did not like the experience as much as I expected. Android is complex!...

    Made a "binding" of the Vosk speech to text thingy for Tasker. It's my first Android thing in a long time now and honestly I did not like the experience as much as I expected. Android is complex!

    Well, either that or me not starting with something more basic caused it. IDK, but it somehow works, which is nice I guess.

    Any experienced Android devs here, please try to not cringe at my code too much, OK? But still take a look if you have some free time, I want to know how I might be able to improve it.

    2 votes
  4. vord
    Link
    Toying with naming data analysis again, after this discussion. (Boy and Girl defined by SSA) 2010's condensed data Rank Number of Boys Boy Names Number of Girls Girl names Significant Note 1...

    Toying with naming data analysis again, after this discussion. (Boy and Girl defined by SSA)

    2010's condensed data
    Rank Number of Boys Boy Names Number of Girls Girl names Significant Note
    1 182896 Noah 194667 Emma
    2 173636 Liam 184192 Olivia
    3 162876 Jacob 180832 Sophia
    4 159600 William 170185 Isabella
    5 157591 Mason 155546 Ava Girl popularity drops below Boy popularity
    6 148857 Ethan 128824 Mia
    7 144741 Michael 118475 Abigail
    8 141833 Alexander 117450 Emily
    9 139307 James 102269 Charlotte
    10 136649 Elijah 98258 Madison
    ... ... ... ... ...
    38 86535 Sebastian 51538 Audrey
    39 86530 Caleb 51153 Anna
    40 85569 Jack 48941 Allison Girl popularity drops under 50k
    41 83967 Christian 48010 Gabriella
    42 79687 Jonathan 47673 Claire
    ... ... ... ... ...
    79 50488 Jason 35605 Sophie
    80 50217 Chase 35217 Mackenzie
    81 49994 Nolan 35146 Eva Boy popularity drops below 50k
    82 49535 Ayden 34611 Gianna
    83 49194 Cooper 34087 Luna
    ... ... ... ... ...
    371 8713 Ruben 8712 Gia
    372 8577 Orion 8706 Camryn
    373 8540 Derrick 8686 Annabella Boy popularity drops below Girl popularity
    374 8300 Cade 8553 Ember
    375 8295 Atticus 8547 Sage
    ... ... ... ... ...
    25527 5 Aalam 11 Clariza
    25528 5 Aakif 11 Claribelle
    25529 5 Aaidan 11 Ciya
    25530 5 Aadian 11 Citlalic
    25531 5 Aadav 11 Cimone Boy popularity drops below 5/yr, data stops
    34422 5 Aakanksha
    34423 5 Aadiya
    34424 5 Aadison
    34425 5 Aadilynn
    34426 5 Aabidah Girl popularity drops below 5/yr, data stops

    So it is quite interesting to see how much longer of a tail girl names have relative to boy names. Keep in mind that births are roughly 50/50 split.

    2 votes
  5. Flashynuff
    Link
    I've been working on a code challenge (UI for an API) for a senior front end dev position I applied for. They asked for something using React if possible, which I've not built anything with...

    I've been working on a code challenge (UI for an API) for a senior front end dev position I applied for. They asked for something using React if possible, which I've not built anything with before, so it's been quite the journey to figure out the build system hurdles. I think I've got them mostly figured out, but boy is it frustrating to have to understand almost the entire build system and the intricacies of Node vs ES6 vs CommonJS before you can even write a test. And it doesn't help that half of the solutions are just "install this random package that will automagically fix it".

    1 vote