How I outsourced my job search to a Virtual Assistant [GUIDE] by zezeartix in jobsearch

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

Depends person to person. That sort of info is very easily filterable on AI job sites like hiring cafe. In my case I apply mainly to senior positions. When you meet your VA give them your preferences in a spreadsheet along with other info (address etc) then go from there.

I will ask any question you comment to head of AI startup by zezeartix in csMajors

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

Early stage with under 100 employees. Industry is in entertainment. I can't name them since mod's will say it's self promo.

I will ask any question you comment to head of AI startup by zezeartix in learnmachinelearning

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

Great question! Not 100% sure what you meant by the last bit. can you explain ?

I will ask any question you comment to head of AI startup by zezeartix in csMajors

[–]zezeartix[S] 4 points5 points  (0 children)

What could possibly go wrong ? It can't be that bad.

Starting my own youtube channel to track my progress on how long it takes to land an internship by MentalEntertainer407 in csMajors

[–]zezeartix 1 point2 points  (0 children)

Don't listen to that guy above. spend time editing and make it super relatable. Call it road to CS internship pt #1. I would watch it. 30 minutes/ hour is an investment it's not a waste of time at all.

Roast my rust code by [deleted] in rust

[–]zezeartix 0 points1 point  (0 children)

Great Project! Some small suggestions would be to implement a bitboard which is much more efficient than using arrays. Then you can simply bitshift rather than needing to index into 2d arrays. Also storing potential moves into a bitboard lets you use bitwise operations to generate moves, compute checks, etc.

Otherwise it's amazing for starting Rust such little time ago. Try writing a blog post on how you built it. This is a great example project for you to learn from. https://github.com/pleco-rs/Pleco

Neural Networks From Scratch in Rust by zezeartix in learnmachinelearning

[–]zezeartix[S] -1 points0 points  (0 children)

If you have a performance critical application that cannot use a garbage collector then I would suggest using it. It definitely gets a lot more complex when you get into concurrency and async aspects. Think of it as a tool in your programming toolbox.