I'm using BakaReader EX (com.erakk.lnreader) as an example.
- Download desired version of your application, e.g.: https://github.com/calvinaquino/LNReader-Android/releases/download/1.1.34/BakaReader-EX-1.1.34.apk
| From 5d920ec604a896cfd8419f9360f3a81adedd19eb Mon Sep 17 00:00:00 2001 | |
| From: Przemyslaw Pawelczyk <[email protected]> | |
| Date: Sat, 30 Jan 2010 20:57:06 +0100 | |
| Subject: [PATCH] BadRAM for v2.6.32.x | |
| Attempt to adapt BadRAM patches to recent kernel versions. Includes | |
| improvements and fixes(?). Were previous versions working on x86_64? | |
| I am kernel newbie so all my below thoughts might be severly wrong. | |
| I am not sure about correctness of x86_32 path involving highmem. It is |
| #!/bin/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2013 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| _calcswsa() | |
| { |
| #!/bin/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2013 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # Simple script for downloading program stored on CNET: | |
| # - AOMEI Partition Assistant Standard |
| # [Arch] List provisions with packages providing them | |
| # pacman-based solution | |
| pacman -Si \ | |
| | awk '/^$/{n=""}/^Name/{n=$3}/^Provides/{if($3!="None"){for(i=3;i<=NF;i++){if(t[$i]=="")t[$i]="";t[$i]=t[$i]" "n}}}END{for(p in t)printf("%44-s :%s\n",p,t[p])}' \ | |
| | sort | less | |
| # expac-based solution (better) | |
| expac -S "%n %P" \ | |
| | awk 'NF>1{for(i=2;i<=NF;i++){if(t[$i]=="")t[$i]="";t[$i]=t[$i]" "$1}}END{for(p in t)printf("%44-s :%s\n",p,t[p])}' \ |
I'm using BakaReader EX (com.erakk.lnreader) as an example.
| ### default values: sensitivity=128, speed=97 | |
| ACTION=="add", SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{device/sensitivity}="196", ATTR{device/speed}="255" |
| Package: * | |
| Pin: release n=jessie-backports | |
| Pin-Priority: 800 | |
| Package: * | |
| Pin: release n=jessie-updates | |
| Pin-Priority: 700 | |
| Package: * | |
| Pin: release n=jessie |
| Make pigz.c (2.4) compilable on MSYS2+MinGW-w64. | |
| diff --git a/pigz.c b/pigz.c | |
| index bbbfd2cd19a1..85a61eeca674 100644 | |
| --- a/pigz.c | |
| +++ b/pigz.c | |
| @@ -324,6 +324,11 @@ | |
| // Use large file functions if available. | |
| #define _FILE_OFFSET_BITS 64 | |
| #!/bin/sh | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2016 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # Reassemble arguments (support-most-cases implementation) |