home.social

#fizzbuzz — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #fizzbuzz, aggregated by home.social.

fetched live
  1. In der Serie "Named Problems" stelle ich dir klassische, namentlich bekannte Algorithmus-Probleme vor, die seit Jahrzehnten in Ausbildung, Studium und Interviews verwendet werden. Anhand verständlicher Problemstellungen wie FizzBuzz, Türme von Hanoi oder dem Sieb des Eratosthenes lernst du hier, a

    magicmarcy.de/fizzbuzz-der-ein

    #FizzBuzz #Teilbarkeit #Reihenfolge #Kontrollfluss #Modulo #Coding #Programming #Java #NamendProblems

  2. _In der Serie "Named Problems" stelle ich dir klassische, namentlich bekannte Algorithmus-Probleme vor, die seit Jahrzehnten in Ausbildung, Studium und Interviews verwendet werden. Anhand verständlicher Problemstellungen wie FizzBuzz, Türme von Hanoi oder dem Sieb des Eratosthenes lernst du hier,

    magicmarcy.de/fizzbuzz-der-ein

    #FizzBuzz #Teilbarkeit #Reihenfolge #Kontrollfluss #Modulo #Coding #Programming #Java #NamendProblems

  3. 2/ FizzBuzz in three lines of APL. Note that the composite 'FizzBuzz' string is not mentioned, which I consider a triumph of parsimony.

    #fizzbuzz #programming

  4. 2/ FizzBuzz in three lines of APL. Note that the composite 'FizzBuzz' string is not mentioned, which I consider a triumph of parsimony.

    #fizzbuzz #programming

  5. If you’re not using a Fourier series to solve FizzBuzz, are you even overengineering correctly?

    susam.net/fizz-buzz-with-cosin #fizzbuzz #programming

  6. If you’re not using a Fourier series to solve FizzBuzz, are you even overengineering correctly?

    susam.net/fizz-buzz-with-cosin #fizzbuzz #programming

  7. Oh, look! Another tech bro pondering the existential dilemma of trusting Skynet with #FizzBuzz 🤖🎉. Apparently, the path to utopia is paved with unchecked #algorithms and a sprinkle of "verification" magic. 🌈 Good luck surviving the AI apocalypse with your newfound enlightenment! 🙃
    peterlavigne.com/writing/verif #techbro #AIapocalypse #existentialdread #verificationmagic #HackerNews #ngated

  8. In a galaxy where #CSS is the universal Swiss army knife 🔧, behold the peak of absurdity: Fizz Buzz in CSS! 🎉 Why use #JavaScript when you can torture CSS into doing things it was never meant for, because who needs sanity anyway? 🙃
    susam.net/fizz-buzz-in-css.html #FizzBuzz #absurdity #creativity #webdevelopment #HackerNews #ngated

  9. Ah yes, the age-old quest for #programming enlightenment: writing Fizz Buzz without so much as a hint of logic 🙄. Our intrepid coder Evan has managed to turn the venerable challenge into a Pythonic #circus act, cycling through sequences like a caffeine-fueled hamster on a wheel 🚴‍♂️. Who needs simplicity when you can overcomplicate everything with itertools? 🤹‍♂️
    evanhahn.com/fizz-buzz-without #FizzBuzz #Python #coding #itertools #HackerNews #ngated

  10. 🦜 Ah, the age-old ritual of coding interviews, where #FizzBuzz is summoned like the ghost of programming past. 🧙‍♂️ Our hero bravely faces Dana, the interviewer, with a magical incantation of #JavaScript gibberish that might impress a flock of birds, but not a single human. 🐦✨
    joshmoody.org/blog/programming #codinginterviews #programminghumor #techculture #HackerNews #ngated

  11. 👶✨ Oh, look! Someone's discovered type checking and decided to bless us with a toddler-level #tutorial on the concept! 🎓 After all, who doesn't love a good "Fizzbuzz" reference when pretending to revolutionize #Python type annotations? 🙄
    austinhenley.com/blog/babytype #typechecking #Fizzbuzz #codinghumor #programming #HackerNews #ngated

  12. It really looks like the #intern who wrote this code wouldn't have passed a #fizzbuzz with flying colors. The tool should get its configuration from the filesystem, but then it prevents configurability by validating the configuration against a bunch of hard-coded assumptions.

    I think the bare minimum for making an intern's experience worthwhile is code reviews from experienced engineers. Having an intern make junk that kinda works is just kicking tech debt down the road.

    #software #techdebt

  13. #programming #commonLisp #emacs #repl versus #orgmode for the #fizzbuzz challenge on #medium.
    Using #series #lazyEvaluation
    medium.com/@screwlisp/fizzbuzz
    I think it ended up pretty interesting, and what you would expect. The repl is a better interactive experience, but the noweb tangle optimizes in ways the separate repl lines can't, and is already in a disk-persisted file.

    Looking forward to feedback and commentary ( @ksaj ;p)

  14. [Перевод] FizzBuzz, который не помог мне найти работу

    Fizzbuzz — это простой алгоритм, который когда-то был популярен в контексте технических собеседований. Я знал, что это такое, но до прошлой недели меня ни разу не просили написать его. Базовый алгоритм очень прост, но смысл упражнения в том, что собеседующий добавляет новые правила, чтобы проверить, как вы будете дополнять код, обеспечивая при этом его читаемость и удобство поддержки. Базовую реализацию fizzbuzz можно написать однострочником на Typescript: const fizzbuzz = (n: number)=>`${n%3 ? '' : 'Fizz'}${n%5 ? '' : 'Buzz'}`; Во время собеседования меня попросили написать fizzbuzz на любом близком мне языке; собеседующий даже сказал, что можно использовать эзотерические языки программирования, но рекомендовал не делать этого, потому что некоторые правила реализовать будет сложно. Этого вполне можно было ожидать, ведь собеседование могло длиться до 45 минут, а обсуждать простой fizzbuzz особого смысла не было. Менять язык программирования после начала собеседования тоже было запрещено.

    habr.com/ru/companies/ruvds/ar

    #fizzbuzz #техническое_собеседование #задачи_на_собеседованиях #собеседования #рефакторинг #отладка #ruvds_перевод

  15. Viz the discussion of #memory and #programming and memories of Richard C. Waters' memory and programming,
    I adopted Waters' #MIT #AI Memo on #Series for lispmoo2 (#MOO DSL in lisp).
    lispy-gopher-show.itch.io/lisp
    #itch_io

    I used it to solve #fizzbuzz in my first lazy experience ever. It's about 10% better than me using the loop facility. #lispGames #lisp #commonLisp

    dspace.mit.edu/bitstream/handl

  16. Next week I'm going to start some training sessions for new developers who have started the group's graduate training programme.

    They are quite diverse, and I think we'll start with a little background about being a consultant - which may interest some of them to defect to my side of the group later on!

    Home work will consist of three small challenges, of which I will include

  17. Fizzbuzz: You do realise the 'programmer quiz' version of the game isn't the game, right? Sequence goes: One, two, buzz, four, fizz, buzz, seven, eight, buzz, fizz, eleven, buzz, buzzteen, fourteen, fizzbuzz, buzzteen, seventeen, buzz, buzzteen, fizz, buzz, twenty-two, twenty-buzz, buzz, fizz, twenty-buzz, buzz, twenty-eight, twenty-buzz, fizzbuzz, buzzty-one, buzzty-two, buzz, buzzty-four, buzzty-fizz, buzz, buzzty-seven, buzzty-eight, buzz, fizz, forty-one, buzz, forty-buzz…

    #fizzbuzz

  18. [Перевод] find + mkdir полны по Тьюрингу

    Введение Мы покажем, что система, имеющая лишь команды GNU find и mkdir , полна по Тьюрингу. Хорошо известно, что команды sed и awk сами по себе полны по Тьюрингу, но мне не удалось найти информации о Тьюринг-полноте find + mkdir . Доказательство основано на реализации таг-системы . Мы по порядку рассмотрим реализацию цикла, FizzBuzz и таг-системы.

    habr.com/ru/articles/837280/

    #полнота_по_тьюрингу #машина_тьюринга #mkdir #find #gnu #регулярные_выражения #fizzbuzz

  19. “How to align text to left”

    Normal language: text.setAlignment(LEFT)

    Java: ((DefaultTextAlignementModel)text.getDefaultAlignmentModel()).setAlignmentModel(AlignmentModelFactory.createNew(AlignmentModel.LEFT))

    #programming #funny #java #fizzbuzz #humor

  20. [Перевод] Новый рекорд производительности FizzBuzz

    283 ГБ/с на AMD Ryzen 9 7700X. Сборка (протестирована с GCC 13): g++ fizzbuzz.cc -march=native -o fizzbuzz -O3 -Wall -std=c++20 -fno-tree-vectorize -fno-exceptions На сборку уходит несколько минут. В зависимости от CPU можно добиться повышенной производительности с -fno-tree-vectorize или без этого ключа.

    habr.com/ru/articles/794925/

    #fizzbuzz #code_golf #задачи_для_собеседований #оптимизация_кода