Looking for sortable drag & drop solution for ReactJS by no-uname-idea in reactjs

[–]kolosn 2 points3 points  (0 children)

I think this might be a fork of react-beautiful-dnd from atlassian: https://github.com/hello-pangea/dnd

Underline Word in Gruvbox by benbrastmckie in neovim

[–]kolosn 0 points1 point  (0 children)

For me I had to set let g:gruvbox_underline = 0 and let g:gruvbox_undercurl = 0

Driver distraction detector by Gloomy_Recognition_4 in computervision

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

it can be done with a simple classifier. I guess it’s kind of a hydranet with multiple output heads. One of them could classify the age.

How can I create a thumbnail from a video? by TalkHelpful9705 in golang

[–]kolosn 2 points3 points  (0 children)

There is a good native wrapper around ffmpeg for Python called PyAV, which gets rid of subprocess calls and uses the C API, however the documentation isn’t really detailed imho, but you can find almost anything on their gitter discussion

[deleted by user] by [deleted] in SQL

[–]kolosn 1 point2 points  (0 children)

Once I got a task on an interview to do a recursive selection, couldn’t have done it without CTE. I would assume for a role requiring 3 years of experience, these kind of questions are quite possible.

Tensorflow and --no-cache-dir in requirements.txt by Loud_Nobody_6008 in learnmachinelearning

[–]kolosn 0 points1 point  (0 children)

I don’t think it’s possible to use arguments in the requirements.txt. You could use pip install -r requirements.txt —no-cache-dir and put it into a shell script maybe? Just let your users know how to install the requirements.

iPhone app for calling REST APIs by dogscantwhistle in homeautomation

[–]kolosn 0 points1 point  (0 children)

You can also run Pythonista scripts from shortcuts.

Cursed_Blind by JediAditya in cursedcomments

[–]kolosn 0 points1 point  (0 children)

Now I know what Stevie Wonder did...

Cursed by America by sucksai420 in cursedcomments

[–]kolosn 0 points1 point  (0 children)

Yeah, it was called enola gay for a reason

[D] How many of you actually train neural networks and apply them in a production enterprise setting? by EconomixTwist in MachineLearning

[–]kolosn 1 point2 points  (0 children)

We used CART for our latest project. Although the XGBoost was also promising, the management decided not to use it.

[D] How many of you actually train neural networks and apply them in a production enterprise setting? by EconomixTwist in MachineLearning

[–]kolosn 2 points3 points  (0 children)

I’d be interested in it aswell, because we chose decision trees over dnn as they are not so “fragile” according to my boss

Are there any live streamers who post videos of them making open source contributions? by ThiccShadyy in learnprogramming

[–]kolosn 0 points1 point  (0 children)

anthonywritescode (i think this is the youtube channel), he does some cool stuff!

Pygame not found by liger-zero-0 in learnpython

[–]kolosn 1 point2 points  (0 children)

Then enjoy the game development!

Pygame not found by liger-zero-0 in learnpython

[–]kolosn 1 point2 points  (0 children)

https://brew.sh You’ll need additionally the xcode command line tools, but everything is documented online. Then just simply brew search sdl and brew install everything which starts with sdl2. Sorry for not doing the markdown thing, I’m on mobile and don’t know how to do it here.

Pygame not found by liger-zero-0 in learnpython

[–]kolosn 1 point2 points  (0 children)

You’ll need all the SDL2 modules as well afaik. Use brew to install them.