Category: Community and Resources

Would it be better to redirect all new julia usage questions to stack overflow

function redirect_question(question) if question == “new julia usage” redirect_to_stackoverflow() else answer_question(question) end end function redirect_to_stackoverflow() println(“Redirecting to Stack Overflow…”) end function answer_question(question) println(“Answering question: “, question) end redirect_question(“new julia usage”) Solution 1:

Read More »

Lowering the bar for beginner contributions

function lower_bar() println(“Welcome to the Julia community!”) println(“We are excited to have you contribute.”) println(“Here are a few ways you can get started:”) println(“- Join our beginner-friendly mailing list.”) println(“- Attend our

Read More »