- A process executes the code
fork ();
fork ();
fork ();
The total number of child processes created is
(A) 3
(B) 4
(C) 7
fork ();
fork ();
fork ();
The total number of child processes created is
(A) 3
(B) 4
(C) 7
private channels are private to each, doesn't matter who is workspace owner link
replies in slack are theaded keeping the channel clean, while those in discord are sent on the public channel (similar to whatsapp)
emoji react on messages, polls (saves from +1 cancer), personalized reminders,
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
degradation problem
without adding parameters.Hard Sample Mining
# import torch | |
# import detectron2 | |
# from PIL import Image | |
# import numpy as np | |
# from detectron2.modeling import build_model | |
# from detectron2.config import get_cfg | |
# from detectron2.structures import ImageList | |
# from torchinfo import summary |
while doing `pip install pycuda==2020.1` | |
Reference: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#mandatory-post | |
mapped python to python3 outside the virtal env | |
cuda.h was not found: | |
1. export PATH=/usr/local/cuda-10.2/bin${PATH:+:${PATH}} -> `ls /usr/local` showed us that our cuda version was 10.2 | |
pyconfig.h error: | |
1. export LD_LIBRARY_PATH=/usr/local/cuda-10.2/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} |
Build a chatting app, where:
- Use concepts of multhreading to implement a thread safe message queue. |