https://github.com/t0xic0der/fragment/tree/checking-resource
We can make this file beautiful and searchable if this error is corrected: It looks like row 7 should actually have 7 columns, instead of 2 in line 6.
This file contains hidden or 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
| #,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 |
This file contains hidden or 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 docker.io/library/node:latest | |
| LABEL maintainer "Akashdeep Dhar <t0xic0der@fedoraproject.org>" | |
| WORKDIR /data | |
| RUN git clone --branch master https://github.com/ether/etherpad-lite.git . | |
| EXPOSE 9001 | |
| ENTRYPOINT ["sh", "/data/src/bin/run.sh", "--root"] |
This file contains hidden or 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 centos:latest | |
| LABEL maintainer "Akashdeep Dhar <t0xic0der@fedoraproject.org>" | |
| 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"] |
git clone https://github.com/zebpay/zeb_py.gitcd zeb_pyvirtualenv venvsource venv/bin/activatepython3 setup.py installpip3 install requests pycrypto- Add
from zebpay_client import zebpay_rest_clientin your module to use functions
Host:
irc.libera.chat:6697
List:
#fedora-aaa
#fedora-admin
#fedora-apps
This file contains hidden or 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
| Metadata: | |
| Author: "Akashdeep Dhar" | |
| Email: "akashdeep.dhar@gmail.com" | |
| Datetime: "17:18, 05 Nov 2021" | |
| Timezone: "Asia/Kolkata" | |
| Components: | |
| CentralProcessingUnit: | |
| Name: "AMD Ryzen 7 5800X" | |
| Quantity: 1 | |
| TDP: 105 |
This file contains hidden or 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
| # ... | |
| # Copyright © 2021 Nils Philippsen <nils@tiptoe.de> | |
| # Licensed under the MIT license as published by the Open Source Initiative | |
| # Auto-activate Python virtualenvwrapper environment if shell is started within a project directory | |
| _old_nullglob=$(shopt -p nullglob) | |
| shopt -s nullglob | |
| unset _projdirs_venvs | |
| declare -A _projdirs_venvs |
This file contains hidden or 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 logging | |
| import click | |
| import uvicorn | |
| from ..configuration import config, read_configuration | |
| from ..version import __version__ | |
| DEFAULT_CONFIG_FILE = "/etc/duffy.yaml" |






