Ategon

joined 1 year ago
MODERATOR OF
[–] Ategon@programming.dev 30 points 9 months ago* (last edited 9 months ago) (5 children)

sh.itjust.works removed it locally for their instance hence why you dont see it. Hasnt been removed in the source instance though yet so instances that didnt remove it locally still have it

[–] Ategon@programming.dev 8 points 9 months ago* (last edited 9 months ago) (4 children)

Reports are typically fine. Theres a couple issues with 0.18 but the amount of people reporting would make up for that. Removed it locally from my instance since some reports came to me fine

I assume it will be snapped soon by lemm.ee or world but its around midnight in the US right now and early morning in europe

[–] Ategon@programming.dev 3 points 10 months ago* (last edited 10 months ago)

Would be a bit of work to connect up the logins of the two softwares since they both handle people and logins differently. So probably not something supported on release but I can try to see if I can do something

And yeah I can recommend 2fa somewhere

[–] Ategon@programming.dev 2 points 10 months ago* (last edited 10 months ago) (3 children)

lemm.ee I dont know (probably their politics compared to hexbear's), aussie.zone was due to some comments by their admin. programming.dev was due to the situation with snowe thats a bit back in meta. The votes for aussie.zone and us were tied half for federation half against

[–] Ategon@programming.dev 3 points 10 months ago* (last edited 10 months ago)

Pangora is getting merged into sublinks-ui. Ive been moving over stuff I made for it and adapting it to their codebase. Was planning on soft forking sublinks into a new version of pangora but might not need to tbh, all my stuff I wanted is getting added into sublinks

[–] Ategon@programming.dev 6 points 10 months ago* (last edited 10 months ago)

Alternative to lemmy being developed (but is also using activitypub so the two federate and its compatible with the lemmy api so frontends like sync, boost, photon, etc. will still work). When version 0.1 releases itll essentially have parity with lemmy features but with a better UI and then the next updates will be adding more things for moderation, federation, etc.

People from our instance, discuss.online, lemmy.world, etc. have been working on it

Here's an article https://wedistribute.org/2024/01/sublinks-a-replacement-for-lemmy/

[–] Ategon@programming.dev 5 points 10 months ago

Will mostly be decided when that happens (and sublinks should be giving a lot more tools to work with for federation and moderation). Within the instance itself we didnt have any issues with hexbear users though

[–] Ategon@programming.dev 1 points 10 months ago* (last edited 10 months ago) (1 children)

Its already been fixed (if I remember the patch notes correctly from 0.19 base), they just havent upgraded yet. Been seeing cross instance moderation working better in my queue

[–] Ategon@programming.dev 2 points 10 months ago* (last edited 10 months ago)

Yeah. Shows people in a list with an up or down arrow beside each of them (downvotes hoisted to the top). Helps make it easier to stop vote manipulation. People can theoretically spin up an instance to get who upvoted or downvoted but they could anyways in the database

[–] Ategon@programming.dev 3 points 10 months ago* (last edited 10 months ago)

Turns out to be something specific to a certain instance and how they configured things so were updating today or close to today now

[–] Ategon@programming.dev 3 points 10 months ago (2 children)

Update: something major possibly broke. Were waiting a bit longer and possibly until 0.19.4 if its bad enough

 

Originally made for swordtember

10
[OC] Rainy Nights (files.catbox.moe)
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/pixelart@lemmyloves.art
 
3
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/challenges@programming.dev
 

Given some assortment of brackets, you must find the largest substring that is a valid matching bracket pattern

  • A bracket match is an opening and closing version of the same kind of bracket beside each other ()
  • If a bracket matches then outer brackets can also match (())
  • The valid brackets are ()[]{}

For example for the input {([])()[(])}()] the answer would be ([])() as that is the largest substring that has all matches


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 [(]() 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. 3 points 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 completed the challenge:

submissions open for another day (since the last time I edited the post)

10
P.D Custom Emotes (programming.dev)
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/meta@programming.dev
 

We now have some possibility for custom emotes available in the instance (now that the bug that was happening with them was fixed). If anyone has some suggestions for what to add feel free to reply with them

Ive added the p.d logo and a couple game engines for now as an example. You can send the p.d logo by typing :pro (or more of the name) and then it should show an autofill you can select if youre using the website (theres an emoji picker as well but it doesnt work for custom emotes)

programming.dev logo godot logo pico-8 logo unity logo

Ill likely be adding some for the logos of various things but mainly want to know if theres anything people want other than that

13
Godot at Gamescom 2023 (godotengine.org)
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/godot@programming.dev
3
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/challenges@programming.dev
 

Bracket Inc. wants to ship out new products using their excess brackets. They have tasked you with generating every possible assortment of brackets for some n brackets where the brackets will match

  • A bracket match is an opening and closing version of the same kind of bracket beside each other ()
  • If a bracket matches then outer brackets can also match (())
  • n will be an even number
  • The valid brackets are ()[]{}

For example for n = 4 the options are

  • ()()
  • (())
  • [][]
  • [[]]
  • {}{}
  • {{}}
  • []()
  • ()[]
  • (){}
  • {}()
  • []{}
  • {}[]
  • ({})
  • {()}
  • ([])
  • [()]
  • {[]}
  • [{}]

You must accept n as a command line argument (entered when your app is ran) and print out all of the matches, one per line

(It will be called like node main.js 4 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. 2 points 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

47
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/meta@programming.dev
 

Hey everyone! I'll be going through and making features for the site soon (as I've almost got my laptop back) and wanted to know if there was any features that are wanted that I dont already have noted down

I'm currently planning to do:

  • Customizable icon shapes (circle, hexagon, etc.)
  • Flairs
  • Ability to block an instance
  • Ability for admins or community mods to hide communities from the all feed
  • Community short descriptions (to show in the community list + top of sidebar)

And polls are also being worked on by snowe

Will try to get the changes merged into lemmy itself as well but they'll be released here first

 
IO.puts "Hello, world!"

Options: Erlang, Elixir, Julia, Kotlin

Use the following link to guess an answer, answer + results posted in 12 hours. (If you say the answer in the replies please put it in spoiler tags)

https://strawpoll.com/e2narP0olgB

 

Ive created a js app that can be used to test solutions for the community. Certain ones people made for challenge #1 wont be able to be put through it since they accept user input through entering it while its running rather than command line arguments but ill be enforcing command line argument use going forward

Let me know if theres any issues you find with it. I tested with with javascript, python, and rust and seemed to be working great. There can be differences in runtime when you run the same thing multiple times so ill be taking the median of running it 50 times for the performance score in the challenge

 

Options: TRS-80, Altair 8800, Commodore 64, Apple II

Use the following link to guess an answer: https://strawpoll.com/e2narPLNzgB

If you say the answer in the replies please put it a spoiler tag

4
Guess the Language: #9 (programming.dev)
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/trivia@programming.dev
 
import std.stdio;

void main()
{
    writeln("Enter a number:");
    int input;
    readf("%d", &input);
    writeln("Factorial:", factorial(input));
}

int factorial(int n)
{
    if (n <= 1)
        return 1;
    return n * factorial(n - 1);
}

Options: Vala, Crystal, D, Nim

Use the following link to guess an answer, answer + results posted in 12 hours. (If you say the answer in the replies please put it in spoiler tags)

https://strawpoll.com/Qrgebk7PKZp

 

This is a place to discuss things relating to developing for ios.

Currently ill be temporarily managing this community. I have reached out to one of the r/iOSProgramming mods to see if they are interested in running it and if not ill do a post here looking for people

Some other related communities

view more: ‹ prev next ›