http://www.mif.vu.lt/atpazinimas/dip/FIP/fip-Contents.html http://www.its.caltech.edu/~matilde/GeomNeuroClass.html http://www.its.caltech.edu/~matilde/MumfordShahRecentSurvey.pdf open cv documents mit 6.869 homepages Dutch https://sites.google.com/site/ucbcs29443/ https://recordings.engineering.illinois.edu:8443/ess/portal/section/c47c3db7-c170-463e-9230-b17c595b1dd1 http://vision.stanford.edu/teaching/cs131_fall1415/schedule.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get --purge remove nvidia-* | |
sudo apt-get autoremove | |
sudo apt-get update | |
sudo gedit /etc/modprobe.d/blacklist-nouveau.conf | |
paste | |
blacklist nouveau | |
blacklist lbm-nouveau | |
options nouveau modeset=0 | |
alias nouveau off | |
alias lbm-nouveau off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://engineering.purdue.edu/kak/compsec/Lectures.html | |
http://cse.iitkgp.ac.in/~sandipc/Courses/ | |
https://www.youtube.com/watch?v=akU1Ji8Vzdk&list=PLbMVogVj5nJRa3VKt_eyZdJ_DitCz1cvQ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* OpenCV video streaming over TCP/IP | |
* Client: Receives video from server and display it | |
* by Steve Tuenkam | |
*/ | |
#include "opencv2/opencv.hpp" | |
#include <sys/socket.h> | |
#include <arpa/inet.h> | |
#include <unistd.h> |
- http://codeforces.com/blog/entry/23054
- http://brilliant.org
- https://www.quora.com/What-was-Anudeep-Nekkantis-Competitive-Programming-strategy-to-become-35th-in-Global-ranking-in-just-6-7-months
- https://www.onlinedoctranslator.com/
- https://weltam.wordpress.com/topcoder-cookbook/
- http://www.learn4master.com/interview-questions/leetcode/leetcode-problems-classified-by-company
- https://a2oj.com/
- https://cp-algorithms.com/
- https://i.imgur.com/xRU6Q80.png
- https://tinyurl.com/y8lmx9yu
- https://deepstreamhub.com/tutorials/protocols/webrtc-file-transfer/
- https://www.html5rocks.com/en/tutorials/webrtc/infrastructure/
- https://www.reddit.com/r/webdev/comments/7nrlb9/how_can_i_build_a_video_streaming_backend/
- https://dev.to/oktadev/build-a-video-chat-service-with-javascript-webrtc-and-okta-22m0
- https://stackoverflow.com/questions/5723049/what-is-the-best-approach-to-develop-a-video-chat-web-application-in-java-flex
- https://www.sitepoint.com/webrtc-video-chat-application-simplewebrtc/
- https://webrtc.ventures/2018/02/learn-how-to-build-a-video-conference-app-and-not-die-trying/
- xauth list
- For example add apoorva/unix:$DISPLAY(0,1) MIT-MAGIC-COOKIE-1 72c0f18181c1f08a06df2f5bbaa861cc
- copy whole line
- sudo docker run -i -t --privileged --net=host -e DISPLAY -v /tmp/.X11-unix apoorva/weed1 bash
- in docker image
- apt install auth
- xuth add (paste cookie)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove unused images | |
docker rmi -f $(docker images | grep "<none>" | awk "{print \$3}") | |
# Remove dangling images | |
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) | |
# Ejecutar bash dentro de un servicio docker | |
$ docker-compose exec <service id> bash |
OlderNewer