Tested on Ubuntu 18.04
sudo apt update && sudo apt install -y git python3 python3-pip python3-dbus libcairo2 libpangocairo-1.0-0 libxcb-render0-dev libffi-dev
pip3 install xcffib cairocffi
cd /tmp
::-webkit-scrollbar { | |
width: 1rem; | |
} | |
::-webkit-scrollbar-corner, | |
::-webkit-scrollbar-track { | |
background: #333333; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #575757; | |
background-clip: padding-box; |
version: '3.0' | |
services: | |
mongo: | |
image: mongo | |
restart: unless-stopped | |
ports: | |
- 27017:27017 | |
environment: | |
MONGO_INITDB_ROOT_USERNAME: root |
#!/bin/bash | |
function get_active_window() { | |
printf "0x%08x" $(xdotool getactivewindow) | |
} | |
function get_current_opacity() { | |
window="$1" | |
opacity=$(xprop -id $window | grep _NET_WM_WINDOW_OPACITY | awk '{print $3}') | |
if [ -z $opacity ]; then |
#!/bin/bash | |
mkdir -p ~/.local/bin | |
echo -e '#!/bin/sh\n/usr/bin/pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY HOME=$HOME "$@"' > ~/.local/bin/gksudo | |
chmod u+x ~/.local/bin/gksudo |
This dependency for some reason cannot be installed using the package managers (apt
, apt-get
or aptitude
).
Download the .deb
file
Try to install it using:
By: Chamin Morikawa (https://www.linkedin.com/pulse/writing-related-work-section-paperthesis-chamin-morikawa/)
For most students, writing about what they did on their own is not hard. But writing about others' work - which is what you have to do in the "State of the Art" or "Related Work" section - is quite hard for them. Here are a few guidelines to make this task a bit easier.
Let's lay down our assumptions before continuing. I assume that you want to write a "Related Work" section for a research paper or a thesis that describes your approach to solve some problem. Let's also assume that there are other publications that attempt to solve the same problem, but the solutions in them are not perfect. Finally, let's assume that your approach has some difference when compared to those by others, and some improvement (faster, more accurate, easier to afford, etc.).