Ategon

joined 1 year ago
MODERATOR OF
[–] Ategon@programming.dev 4 points 10 months ago

Yep, went through and made some to match the Intellij IDEA community weve had for awhile and added the blogs for them to my rss reader for posting to give this place some activity. Hope you enjoy :)

If anyone wants to mod any of the communities feel free to reach out

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

Probably soon, just been making sure nothing major broke in the 0.19.3 update before we move over

The 0.19.1 version isnt ideal but its still usable if the server is restarted every day so gives us some time and after the situation with 0.19 0.19.1 were being more cautious

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

Alright ive modded you, since its at 2 mods now ill unpin the post

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

Theres a link to the community for it in the comment above. Basically will be primarily about making and guessing passwords (but also have some idle game stuff in there as well but no spoilers until I start testing which might be today edit: auths taking longer, testing this week)

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

I assume that's referring to the clues? They'll be randomly generated based on instance info I pull in

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

Its happening once a year so likely in the summer

Im working on another event that may happen next month though depending on if I finish the rest of the things to do in my queue of projects !safe_crackers@programming.dev

(so this and canvas will be 6 months apart from each other)

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

I just transferred the community over to ericjmorey due to them posting in the mod thread so ill try to not manage this as much but I can give my opinion on this community

With all of the question communities ive found that the posting rate is much lower but the engagement on each post is relatively high. If the scope is widened the high activity could be flooded out due to people unsubscribing due to it not being focused on the question topic anymore

(for articles formatted as a question) With articles the focus tends to be more about the article rather than the question itself and you get people talking about things discussed within the article rather than it being open ended

Feel like best thing would be having a new community for career articles

edit: If having a new community for career articles is what you guys want after this discussion just let me know and I can set one up

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

Yeah sure, both cscareerquestions and data engineering are solely admin run currently so starting to move them into dedicated mod teams would be great

For cscareerquestions you just need a post or comment in the community I can use to mod you from

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

Alright ive transferred the community over to you

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

Theres some other sources like monkeyuser and abstrusegoose. Also encourages the creation of new comics

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

For some reason it doesn't like when instances running 0.19 are hooked up to the latest release. Manually specified a version and the issues were fixed

Latest release works fine on 0.18 instances like lemmy.world though

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

Might be something to do with 0.19, Seems like same is true across my mastodon instances. Assume that would be a bug with lemmy

2
Mods and Helpers wanted! (programming.dev)
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/challenges@programming.dev
 

Hey everyone,

Currently looking for some more help with this community. Out of all of them I'm running for the instance this one by far takes the most work since it involves checking peoples code against tests.

I'm starting work on some generic testing systems for various languages (will do another post about that soon) that should help reduce the amount of work but if anyone else wants to help me create and run the challenges let me know (or if anyone wants to help out with running the tests with peoples code and giving them results)

Theres a matrix room for this community at https://matrix.to/#/#p.d-challenges:matrix.org

 

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

You can discuss it below but if you say the answer put it in spoiler tags

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

Welcome to the first programming challenge! Three of these will be posted a week and you can complete it in any language you want.

You get a point for completing an easy challenge, 2 for a medium, and 3 for a hard. For each challenge if you solve it in the least amount of characters you get a bonus point, and if your code runs the fastest when I check it you also get a bonus point. (ties mean everyone who tied gets the bonus point although exact duplicate answers wont count)

Ill be posting a leaderboard that will show the people who have the most points every month

Submissions will be open for a week


As a new hire of bracket inc., you have been tasked with getting rid of excess brackets lying around the facility. You must simplify a series of brackets so that only brackets that dont have a match remain (a match is an opening and closing bracket of the same type beside each other). The final result should have no matches

As an example for the input [(({})({)(()}] the expected output would be [(({)(}]

These are the valid types of brackets: (){}[]

Your system will be tested against 10 different unknown test cases before it is unleashed on the facility. In order to complete this task you must pass all of the test cases.

Any programming language may be used and to submit an answer reply on this post with the code and the language you coded it in

Edit: Clarification, you must take input in from the user using the program instead of them being hardcoded. (makes it easier to test)

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

I've been experimenting with putting random quotes from the !quotes@programming.dev community as taglines in the instance.

It will automatically put a random quote every time you go to a page in the site. I put the ones that are shorter so they don't flood the page, and that were upvoted.

Theres also a link back to the quotes community if you click on the credit where you can discuss about that quote. As more quotes get added to the community the pool of tagine quotes will grow

  • note they may not be visible on certain lemmy clients depending on what features the clients support but they work on web
 

This is a community that will have various programming challenges to complete (in any language of your choosing)

Posts will be done three times a week (one easy, one medium, one hard) with the first easy one coming tomorrow

I'm currently running the community until somebody else volunteers but if anyone else wants to manage it let me know

 

Upvote one of the options below to vote, you can reply on an option with more details

1
Guess the Language: #8 (programming.dev)
submitted 1 year ago* (last edited 1 year ago) by Ategon@programming.dev to c/trivia@programming.dev
 
function isPalindrome(str)
    str = str:gsub('%s', ''):lower()
    return str == str:reverse()
end

local input = "A man a plan a canal Panama"
if isPalindrome(input) then
    print("It's a palindrome!")
else
    print("It's not a palindrome.")
end

Testing out a new voting system of using strawpoll so that vote totals can be hidden. A thing I noticed in some of the previous rounds was that people would pile on to the same option. Loses a bit of the ease of vote but shouldnt be too bad since you can just instantly vote after you go to the site

You can vote for what you think it is here: https://strawpoll.com/xVg7j6Q5Rnr

Voting ends in 12 hours and then ill post here with the results. You can talk about it below but if you want to talk about the correct answer put it in spoiler tags

 

Hey everyone! Just wanted to create a post on different things going on in the instance

Matrix Space

Programming.dev now has a matrix space at https://matrix.to/#/#p.d:matrix.org . We had a matrix room before but a space is essentially a collection of rooms so we have sections for different communities, a support room, etc. If you manage a community and want a matrix room for it listed feel free to reach out to me

Instance Rules

I've collected together our instance rules and extended it to be a bit more clear. Here are the rules (and they'll be going on the sidebar as well)

  • Dangerous content on the instance and federated instances including phishing, spamming, brigading, unmarked nsfw, doxing, etc. is not allowed and subject to be handled by the mods or admins
  • Hate speech is not allowed on the instance or in instances federated with it. This includes remarks directed at sex, gender, orientation, disabilities, etc.
  • Other content is up to the discretion of the mods of the community its posted in
  • If a community has no dedicated mods it will be managed by instance admins until a mod team is found
  • If a community mod team has gone inactive and no longer maintains a community new mods may be added
  • Any federated communities that have shown they will not enforce these rules while their content shows up on our feeds will have their community removed from our instance
  • Instances that continually encourage this type of behavior or are built to only do this type of behavior are subject to be defederated
  • Certain content may be hidden from our all feed including politics and bot spam. (Not currently implemented due to lemmy limitations but will be eventually). This means it won't show up in all but you can still view it and subscribe to the communities to have it show in your subscribed feed
  • Bots interacting in our communities must follow our Programming.dev bot guidelines (see below)
  • If an instance is not being managed (due to owners being gone, etc.) it is subject to be defederated

Things that do not follow these rules will be handled. This currently includes

  • Communities in exploding-heads will be removed from our instance
  • Rammy.site will be defederated from due to the site owner being MIA

Bot Guidelines

  1. Mark Bots as Bots Bot accounts should be marked that they are a bot using the checkbox in the user settings. This includes any automation in an account (if you automate part of your personal account, put what the automation is in your bio so people know)
  2. Put contact info The owner of the bot and some way to contact them must be in the bot's bio (unless its an automated personal account, in that case the account itself it the way to contact)
  3. Use mentions as prefix If a bot has commands it should use its mention as a prefix. (This will allow different bots to use the same commands without interfering with each other)
  4. Dont spam Bots should not spam posts or comments. (If a bot command has been used its fine to do a response but dont drown out non bot posts in the local new sort.) Certain cases are unavoidable such as if you want to get a bot posting weekly threads in different communities at the same time but in those cases please contact me first to get it approved
  5. Allow mods to opt in Bots participating in a community should be opt in so communities can choose what bots they want. If you want a bot to be allowed in a community please contact the moderators of that community first. EXCEPTION: If a bot is deemed to be a well behaving bot that brings net good to the instance it can override this rule as long as it has been approved by an admin. This can include things such as a tldr bot, remindme bot, link fixer bot, piped link converter bot, etc. If a bot has overriden rule 5 with this exception community moderators should still be able to opt out of the bot

These guidelines should bring us up to parity with lemmy.world along with allowing a bit more leeway within the instance since there has been some nice bots getting made that I dont want unfairly punished

If you have a bot you want whitelisted for the entire instance for the rule 5 exception feel free to dm me here or on matrix


And that's everything for this month. Progress on some features for the site is still ongoing. My laptop is currently being repaired but once I get it back I'll do a bunch of progress and share some updates here

If you have any suggestions for the rules, bot guidelines, new site features, etc. feel free to throw them down below

 

Verses of Enchantment

Koi Zen: Opposite Colors

SokoSolitaire

Vanaris Tactics

Broken Lens

Endless Adventure

Gozen Video Editor

Death Unphased

Maces and Dices

Engine Roar

 

Continuation of lukky's fps tutorials. First one was posted here https://programming.dev/post/1433628

view more: ‹ prev next ›