Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
/* | |
Maintainer: Allan de Queiroz | |
--- | |
## Installation | |
1. Replace by habId(line 27) and habToken(line 28) with your ones, you can find them [Here](https://habitica.com/user/settings/api) | |
2. Go to [https://script.google.com/](https://script.google.com/) | |
1. Create a new project, give some nice name to it and the script as well, I liked the one from the inspirational script HabiticaReminders. |
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
# rm /usr/share/X11/xorg.conf.d/50-mtrack.conf | |
# Install mtrack driver 0.5.0++ | |
# Save this file to /usr/share/X11/xorg.conf.d/50-mtrack.conf | |
# This config is specialized for MacBook Air 2012 (5,2) | |
Section "InputClass" | |
MatchIsTouchpad "on" | |
Identifier "Touchpads" | |
MatchDevicePath "/dev/input/event*" | |
Driver "mtrack" | |
# The faster you move, the more distance pointer will travel, using "polynomial" profile |
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
QCon 2019 |
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
from fedora | |
RUN dnf install python-pip -y | |
RUN dnf -y install dnf-plugins-core | |
RUN dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo | |
RUN dnf config-manager --set-disabled docker-ce-test | |
RUN dnf config-manager --set-disabled docker-ce-edge | |
RUN dnf install docker-ce -y | |
RUN pip install docker-compose |
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
let stompClient = null; | |
function setConnected(connected) { | |
$("#connect").prop("disabled", connected); | |
$("#disconnect").prop("disabled", !connected); | |
if (connected) { | |
$("#conversation").show(); | |
} | |
else { | |
$("#conversation").hide(); |