yum install -y git
yum groupinstall -y "Development Tools"
yum install -y qt5-qtbase-devel qt5-qttools-devel qt5-qtbase-mysql qt5-qtbase-postgresql qt5-linguist
yum install -y openssl-devel libtool-ltdl-devel
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# pip install Pillow | |
import os | |
import shutil | |
from PIL import Image | |
IMAGES_PATH = './images' |
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
/** | |
* Imports currency data from Truncgil JSON API in TRY Ex: IMPORTTRUNCGIL("Çeyrek Altın") | |
* @param {string} currency_type - Type of the currency | |
* @customfunction | |
*/ | |
function IMPORTTRUNCGIL(currency_type) { | |
is_ok = false; | |
switch(currency_type) { | |
case "ABD DOLARI": | |
is_ok = true; |
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
docker run --rm -it httpd:2.4-alpine htpasswd -nb user passwd |
- Install:
pip/pip3 install supervisor
- Configure:
mkdir -p /etc/supervisord/conf.d /var/log/supervisord /var/run/supervisord
cp supervisord.conf /etc/supervisord/supervisord.conf
- Setup as systemd service:
cp supervisord.service /usr/lib/systemd/system/supervisord.service
- Reload systemd service configurations
systemctl daemon-reload
- Start service
A clean and native interface to Google Meet (https://meet.google.com) using nativefier.
Supports dark and light mode on macOS Mojave.
To build the application, nativefier will be used with the following commands:
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
import pysolr | |
import time | |
import json | |
import os | |
import threading | |
from datetime import datetime | |
from datetime import timedelta | |
############################################################################## |