>Why is she in a washing machine?
>No anon, YOU are in the washing machine
(Not actual output)
| #!/bin/sh | |
| __opkgx_append_to_list() { | |
| local _listfile="${1}" | |
| shift | |
| cp "${_listfile}" "${_listfile}.bak" | |
| for pkg in "$@"; do | |
| echo "${pkg}" >> "${_listfile}" | |
| done | |
| diff -u "${_listfile}.bak" "${_listfile}" |
| #!/bin/bash | |
| if [[ $# -lt 1 ]]; then | |
| echo "Usage ${0} <doi> ..." | |
| exit 1 | |
| fi | |
| for doi in "${@}"; do | |
| ref="$(curl -sSf -H 'Accept: application/x-bibtex' -L "http://dx.doi.org/${doi}")" && { \ | |
| head -n1 <<< "${ref}" | egrep -q '^@[a-zA-Z]+' | |
| if [[ $? != 0 ]]; then |
| #!/usr/bin/env python3 | |
| # CSR OTAU binary parser | |
| # https://developer.qualcomm.com/qfile/34081/csr102x_otau_overview.pdf | |
| # For use with test and demonstration only. This is obviously not official and | |
| # is not affiliated with Qualcomm. | |
| import io | |
| import os | |
| import sys |
| [[source]] | |
| url = "https://pypi.org/simple" | |
| verify_ssl = true | |
| name = "pypi" | |
| [packages] | |
| pybluez = "*" | |
| pillow = "*" | |
| packbits = "*" |
| from PIL import Image, ImageDraw | |
| DEFAULT_NESW = (292, 246, 177, 472) | |
| OFFSETS_NESW = ((1, 0), (19, 1), (2, 19), (0, 2)) | |
| class common(object): | |
| def __init__(self, fmid = 0): | |
| self.fmid = fmid |
| #!/usr/bin/env python3 | |
| import json | |
| import os | |
| import pyrogram | |
| import sys | |
| from collections import OrderedDict | |
| def make_bot(session, persistent_path): | |
| app = pyrogram.Client(session) |
This documentation is provided solely for education and interoperability purposes (aka persons who are tired of proprietary non-customizable hardware and want to use their own hardware for DIY controllers). It enables neither chip-cloning nor controller counterfeiting which would violate copyright and/or any other applicable laws. This documentation also comes without warranty. Use it at your own risk.
| #include <errno.h> | |
| #include <stdio.h> | |
| int main(void) { | |
| errno = 0; | |
| perror("Error"); | |
| return 0; | |
| } |
"Everything you wanted to know about CRC algorithms, but were afraid to ask for fear that errors in your understanding might be detected."
Version : 3.
Date : 19 August 1993.
Author : Ross N. Williams.
Net : [email protected].