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 python:3.9.9-slim-bullseye | |
RUN apt-get update && \ | |
apt-get upgrade -y && \ | |
apt-get install git -y && \ | |
git -C /opt/ clone https://gist.github.com/29add14089b54f72e9f5063bdda4d2ec.git && \ | |
pip3 install python-twitter python-dateutil typing | |
WORKDIR /data | |
ENTRYPOINT ["python3", "/opt/29add14089b54f72e9f5063bdda4d2ec/twitter_scraper.py"] |
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
#include <iostream> // cin, cout, endl | |
#include <string> // string | |
using namespace std; | |
using uint = unsigned int; | |
// Verkettete Liste mit Elementen des Typs T. | |
template<typename T> | |
struct List |
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
### Keybinds | |
### | |
# remap prefix from 'Ctrl-b' to 'M' | |
unbind C-b | |
set -g prefix C-s | |
bind C-s send-prefix | |
# remap splitting panes | |
unbind '%' |
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
{ | |
"headers": | |
[ | |
{"Access-Control-Allow-Origin": "*"}, | |
{"X-Frame-Options": ["1", "1; mode=block"]}, | |
{"Content-Security-Policy": ["default-src 'self'"]}, | |
{"Transfer-Encoding": ["strict"]} | |
] | |
} |
OlderNewer