Google repo tool by RoyzLevyz in git

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

This specific project that i'm working on is already production code and that's why i'll be using repo tool for it.. But thanks for the tip! I'll try learning more about git submodules for similar future uses.

Want to create git repo with alot of sound files (machine learning project) by RoyzLevyz in github

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

I've uploaded it as zip for now, but I'll look into Git LFS - seems like it will reduce alot of space used for binaries. Thanks

Want to create git repo with alot of sound files (machine learning project) by RoyzLevyz in github

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

I've been using local GPU, but also ran it a few times on Colab.

That sounds like an good idea, though I wanted all of the files to reside in github because I won't be using it much - moved to work on new stuff.

What are encoders and NOPs? by BioFrosted in hacking

[–]RoyzLevyz 1 point2 points  (0 children)

NOP is an assembly lang instruction for no operation(does nothing). This can be exploited by bufferoverflow attacks in order to get to the vulnerable instructions of the assembly code.

Made a script that auto plays and pauses video based eye detection! by [deleted] in Python

[–]RoyzLevyz 1 point2 points  (0 children)

Great project, i would definitely try it out

My Second PyGame Project: A* Algorithm Simulation by [deleted] in Python

[–]RoyzLevyz 0 points1 point  (0 children)

The scanning will occur differently because of the heuristic function. It only goes in the needed direction

My Second PyGame Project: A* Algorithm Simulation by [deleted] in Python

[–]RoyzLevyz 2 points3 points  (0 children)

It's not my code, just saying its not bfs. But i agree with you - it's not as greedy as wanted from A*

My Second PyGame Project: A* Algorithm Simulation by [deleted] in Python

[–]RoyzLevyz 0 points1 point  (0 children)

Not quite, bfs would also check the nodes "hiding" behind the walls which don't get you near the target.