git clone https://github.com/zebpay/zeb_py.git
cd zeb_py
virtualenv venv
source venv/bin/activate
python3 setup.py install
pip3 install requests pycrypto
- Add
from zebpay_client import zebpay_rest_client
in your module to use functions
FROM centos:latest | |
LABEL maintainer "Akashdeep Dhar <[email protected]>" | |
RUN ["dnf", "install", "java", "wget", "-y"] | |
RUN ["wget", "https://github.com/gitblit/gitblit/releases/download/v1.9.1/gitblit-1.9.1.tar.gz"] | |
RUN ["tar", "-xvzf", "gitblit-1.9.1.tar.gz"] | |
RUN ["rm", "gitblit-1.9.1.tar.gz"] | |
WORKDIR /gitblit-1.9.1 | |
EXPOSE 8080 8443 9418 29418 | |
ENTRYPOINT ["sh", "/gitblit-1.9.1/gitblit.sh"] |
FROM docker.io/library/node:latest | |
LABEL maintainer "Akashdeep Dhar <[email protected]>" | |
WORKDIR /data | |
RUN git clone --branch master https://github.com/ether/etherpad-lite.git . | |
EXPOSE 9001 | |
ENTRYPOINT ["sh", "/data/src/bin/run.sh", "--root"] |
#,Filename,Source Spec,Destination Spec,Source Size (MB),Destination Size (MB),Percentage Change (%) | |
1,Anohana The Flower We Saw That Day (2011) S01E01,Video 1920x1080 (H.265 Main 10) / Audio MPEG-4 AAC 100kbps,Video 1280x720 (H.265 Main) / Audio MPEG-4 AAC 160kbps,223,156,-42.95 | |
2,Anohana The Flower We Saw That Day (2011) S01E02,Video 1920x1080 (H.265 Main 10) / Audio MPEG-4 AAC 100kbps,Video 1280x720 (H.265 Main) / Audio MPEG-4 AAC 160kbps,257,183,-40.44 | |
3,Anohana The Flower We Saw That Day (2011) S01E03,Video 1920x1080 (H.265 Main 10) / Audio MPEG-4 AAC 100kbps,Video 1280x720 (H.265 Main) / Audio MPEG-4 AAC 160kbps,247,175,-41.14 | |
4,Anohana The Flower We Saw That Day (2011) S01E04,Video 1920x1080 (H.265 Main 10) / Audio MPEG-4 AAC 100kbps,Video 1280x720 (H.265 Main) / Audio MPEG-4 AAC 160kbps,218,152,-43.42 | |
5,Anohana The Flower We Saw That Day (2011) S01E05,Video 1920x1080 (H.265 Main 10) / Audio MPEG-4 AAC 100kbps,Video 1280x720 (H.265 Main) / Audio MPEG-4 AAC 160kbps,212,149,-42.28 | |
6,Anohana The Flower We |
- Navigate to the
/boot
directory of the Fedora installation of the host to grab some kernel and initramfs images.
The following is an example output for the above command.cd /boot && ls -l
total 239596 -rw-r--r--. 1 root root 234567 Jul 21 02:13 config-5.13.4-200.fc34.x86_64
In order to contribute your code to the repository, a working Git installation, and an account on Pagure is required.
- Install and configure Git, if not done already.
- Install Git
- On Fedora/CentOS/RHEL/OpenSUSE by executing the following command on a terminal.
sudo dnf install git
- On Fedora/CentOS/RHEL/OpenSUSE by executing the following command on a terminal.
- Install Git
Tuning Intel Skylake and beyond for optimal performance and feature level support on Linux:
Note that on Skylake, Kabylake (and the now cancelled "Broxton") SKUs, functionality such as power saving, GPU scheduling and HDMI audio have been moved onto binary-only firmware, and as such, the GuC and the HuC blobs must be loaded at run-time to access this functionality.
Enabling GuC and HuC on Skylake and above requires a few extra parameters be passed to the kernel before boot.
Instructions provided for both Fedora and Ubuntu (including Debian):
Note that the firmware for these GPUs is often packaged by your distributor, and as such, you can confirm the firmware blob's availability by running:
from random import randint | |
from sys import exit | |
from time import sleep | |
#from pyautogui import moveTo, FAILSAFE | |
import pyautogui | |
pyautogui.FAILSAFE = False |