[–] 12 points 2 years ago*

sublinks.org should have the icon for the project

Once it reaches parity next on the milestones is moderation features and then federation. All of the currently planned tasks are available for viewing on the github https://github.com/orgs/sublinks/projects/1

Im still heavily designing a bunch of the UI for sublinks that will eventually be used instead of the current demo (current one is just showing it has lemmy api compatibility) but if you want a very early sneak peek

  • source
  • parent
  • context
  • [–] 1 point 2 years ago* (1 child)

    Alright. Yeah I assume it would mostly be indie game soundtracks which tend to not exist outside of games

    Will get that set up in our events community once I'm off work

    Are vocals required and does it have to be from the past year? edit: read the info post and saw that yeah past year and yes to vocals due to language requirement

  • source
  • parent
  • context
  • [–] 3 points 2 years ago* (last edited 2 years ago) (3 children)

    Would programming.dev be able to participate or is it mostly oriented around countries/country instances

    E.g. entering with songs from games (which usually span multiple countries for the production of them and aren't represented in these types of comps)

  • source
  • parent
  • context
  • [–] 9 points 2 years ago* (last edited 2 years ago) (1 child)

    Theres a lot more users that dont even vote as well

    For programming.dev currently we have~ 1.2k MAU. Including people who have an account but dont vote or comment we get closer to 2k. And then including people who dont have an account we get much higher (~ 80k per day but that includes crawlers and bots)

  • source
  • parent
  • context
  • [–] 6 points 2 years ago* (last edited 2 years ago)

    They show up above the posts, below the navbar

    A random one is chosen to show up every time someone visits the page. You can check out https://programming.dev for some examples of them (usually itll be an http status code or a quote)

    Instances either put announcements there (e.g. future downtime), core info (e.g. links to frontends, donate link) or random sentences. Can only be one of the options out of those three though unless you want to delete and remake things a bunch of times to swap between them if you want everyone to see the downtime message

  • source
  • [–] [S] 5 points 2 years ago*

    Current estimation is around 200 dollars a month. All these small sites im spinning up barely add anything since the usage is negligible compared to something like lemmy. The production server takes up most of the costs out of that amount and then sendgrid costs some

    Donations cover ~ 41% of that currently

    In terms of time its been taking up most of my free time to set all this up + help develop sublinks

  • source
  • parent
  • context
  • COTW: RegEx (programming.dev)
     

    RegEx

    The community of the week is !regex@programming.dev! This is a community all about regular expressions where you can learn about and get help with them.

    A regular expression is a sequence of characters that specifies a match pattern in text. Theyre usually used for find, or find and replace operations on strings, or for input validation.


    If this community interests you feel free to subscribe to it from the community page !regex@programming.dev

    And feel free to put some content there on regular expressions to get the community going. Its currently at 1 active user per month so lets see if we can bump that up

    If anyone wants to be a mod for the community let me know!

    c/regex icon

    [Easy] String Compression (programming.dev)
    submitted 3 years ago* (last edited 3 years ago) by [M] to c/challenges@programming.dev
     

    Given a string, compress substrings of repeated characters in to a format similar to aaa -> a3

    For example for the string aaabbhhhh33aaa the expected output would be a3b2h432a3


    You must accept the input as a command line argument (entered when your app is ran) and print out the result

    (It will be called like node main.js aaaaa or however else to run apps in your language)

    You can use the solution tester in this post to test you followed the correct format https://programming.dev/post/1805174

    Any programming language may be used. 1 point will be given if you pass all the test cases with 1 bonus point going to whoevers performs the quickest and 1 for whoever can get the least amount of characters

    To submit put the code and the language you used below


    People who have completed the challenge:

    view more: ‹ prev next ›