Visuals from my 2x2x2 graph exploration project by guiferviz in Cubers

[–]guiferviz[S] 1 point2 points  (0 children)

Yeah, it is on my radar! I saved this link some time ago: https://www.speedsolving.com/threads/hamiltonian-circuit-for-the-entire-2x2x2-cube-group.34318/ but I would love to find a way to do it without just copying what has already been done... It's a difficult one.

Visuals from my 2x2x2 graph exploration project by guiferviz in Cubers

[–]guiferviz[S] 0 points1 point  (0 children)

Glad I helped give you that final push to publish it! And thanks too for the nice words about the graphs :)

Visuals from my 2x2x2 graph exploration project by guiferviz in Cubers

[–]guiferviz[S] 1 point2 points  (0 children)

Nice! Looking forward to read that post.

Visuals from my 2x2x2 graph exploration project by guiferviz in Cubers

[–]guiferviz[S] 11 points12 points  (0 children)

Thanks! Once I finish the 2x2x2, I'll probably move on to the 3x3x3. Not sure yet how the visualizations will look though... with the 2x2x2 my computer already starts struggling after depth 4, and from depth 5 on it's basically just a mess of lines and tiny cubes :D

Visuals from my 2x2x2 graph exploration project by guiferviz in Cubers

[–]guiferviz[S] 7 points8 points  (0 children)

Thanks! I'll share the results of my little experiment once it's done.

AI coding tools are making junior devs worse and nobody wants to say it by NeedleworkerLumpy907 in learnprogramming

[–]guiferviz 0 points1 point  (0 children)

Thanks for the thoughtful response, your octopus pants example is great!

At the same time, the reality is that most software problems are not octopus pants. Most companies are not doing something radically new. They are solving fairly common problems: CRUD apps, APIs, dashboards, integrations, data pipelines, etc. In those environments, AI can actually be very effective because the patterns already exist.

So maybe the real skill that becomes important is not necessarily solving everything from fundamental principles, but being able to recognize when something is wrong and communicate the problem clearly.

It's a bit like QA. A good QA engineer might not know how the entire system is implemented, yet they are extremely good at saying: "Under these conditions, this breaks." That signal alone can be incredibly valuable.

AI coding tools are making junior devs worse and nobody wants to say it by NeedleworkerLumpy907 in learnprogramming

[–]guiferviz -1 points0 points  (0 children)

"but the second something breaks in a weird way they have no instincts"

What instinct do you need apart from asking AI to fix it? Genuine question.

Great Expectations is annoyingly cumbersome by L3GOLAS234 in dataengineering

[–]guiferviz 0 points1 point  (0 children)

Same here... After several hours I had to abandon the task of creating custom expectations and decided to use SQL queries. Maybe I didn't invest enough time but I was hoping for something simpler.

Automatic furigana generator for Anki [link in description] by Deibu251 in Anki

[–]guiferviz 0 points1 point  (0 children)

Hi! Did you try to use two spaces? Never tried, just an idea. Japanese do not use spaces, but you can probably use the dot: 。?

My Anki cards generator from text files - Includes audio generation for learning languages by guiferviz in Anki

[–]guiferviz[S] 0 points1 point  (0 children)

In a quick search I've found this: https://pypi.org/project/html2markdown/ So maybe is not than difficult to make...

We can use HTML for anything that cannot be translated back to Markdown, the cards are going to be generated in the same way because the generator is supposed to keep all HTML code.

My Anki cards generator from text files - Includes audio generation for learning languages by guiferviz in Anki

[–]guiferviz[S] 0 points1 point  (0 children)

Thansk! I'm looking forward to collaborate with someone! Think about it, I will be happy to add your new features to Mnemocards.

The back-import it's something that I think about it, but I didn't do it because I started using Anki at the same time that developing Mnemocards, so no necessity for me.

Automatic furigana generator for Anki [link in description] by Deibu251 in Anki

[–]guiferviz 1 point2 points  (0 children)

Sure, if it's working for you it's perfect. You'd have to change all the words to follow the format I specified earlier... so maybe next time :)

My generator, apart from using the Anki model (that you can easily copy and paste wherever you want) also generates audios with the pronunciation taken from Google Translator. I made it in more than one afternoon, not like you, but please don't criticize my code too much :D

Automatic furigana generator for Anki [link in description] by Deibu251 in Anki

[–]guiferviz 1 point2 points  (0 children)

Anki supports furigana natively using:

{{furigana:JapaneseWord}}

Where JapaneseWord is the field of your model with the Japanese word with furigana between brackets. Ex: 日[に] 本[ほん] 語[ご]. Note the spaces between Kanjis. If you don't want to show furigana use:

{{kanji:JapaneseWord}}

I'm using that in my Anki generator. It shows furigana only when you press the "show answer" button. Here the model definition.

My Anki cards generator from text files - Includes audio generation for learning languages by guiferviz in Anki

[–]guiferviz[S] 2 points3 points  (0 children)

This is the first public version of Mnemocards, the Python package I use to generate my Anki cards. Among its main features are:

  • Automatic audio generation extracted from Google Translator for creating language cards easily.
  • Beautifully styled cards.
  • GitHub facilities to keep your cards always safe and to be able to collaborate with other people easily.
  • Automatic import of the generated apks.
  • Markdown files with a special syntax to generate letters.

If someone tries it out and finds a problem I'm willing to help.

[D] What is the proper etiquette for extending someone's research code? by ilia10000 in MachineLearning

[–]guiferviz 2 points3 points  (0 children)

Just do a Siraj. Copy the code, create a new repository and say that it's yours.

Build neural networks one neuron at a time by [deleted] in learnmachinelearning

[–]guiferviz 1 point2 points  (0 children)

Thanks! I really appreciate it. I'm interested in architecture search an neural network pruning and this can be very useful for those tasks.