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
| # Maintainer: Tomás Pinho <me(at)tomaspinho(dot)com> | |
| pkgname=rtl8821ce-dkms-git | |
| _pkgbase=rtl8821ce | |
| pkgver=1.0.0.r28.g960279a | |
| pkgrel=2 | |
| pkgdesc="rtl8821CE driver with firmware" | |
| arch=('i686' 'x86_64') | |
| url="https://github.com/tomaspinho/rtl8821ce" | |
| license=('GPL2') |
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
| diff --git a/include/asm-generic/uaccess.h b/include/asm-generic/uaccess.h | |
| index d82c78a79da5..7edb6ab268ad 100644 | |
| --- a/include/asm-generic/uaccess.h | |
| +++ b/include/asm-generic/uaccess.h | |
| @@ -38 +38,5 @@ static inline void set_fs(mm_segment_t fs) | |
| -#define access_ok(addr, size) __access_ok((unsigned long)(addr),(size)) | |
| +#define __typed_access_ok(type, addr, size) __access_ok((unsigned long)(addr),(size)) \ | |
| + #warning uaccess.h access_ok macro no longer has a type parameter. | |
| +#define __untyped_access_ok(addr, size) __access_ok((unsigned long)(addr),(size)) | |
| +#define __get_access_ok(_1,_2,_3,NAME,...) NAME |
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
| commit b8a0ad2a9f5f756453961eeaa52550c95d58ecb6 | |
| gpg: Signature made Tue 02 Apr 2019 10:33:42 PM PDT | |
| gpg: using RSA key F6CC1F4DF325EACBBE2532481F299543498470BA | |
| gpg: issuer "justincapella@gmail.com" | |
| gpg: Good signature from "Justin Capella <justincapella@gmail.com>" [ultimate] | |
| Author: b1tninja <devnull@localhost> | |
| Date: Tue Apr 2 22:33:42 2019 -0700 | |
| https:// for some sources |
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
| commit dc95a771f0d6fab62b7fbccc7f859500134083ac | |
| gpg: Signature made Wed 03 Apr 2019 03:01:58 AM PDT | |
| gpg: using RSA key F6CC1F4DF325EACBBE2532481F299543498470BA | |
| gpg: issuer "justincapella@gmail.com" | |
| gpg: Good signature from "Justin Capella <justincapella@gmail.com>" [ultimate] | |
| Author: b1tninja <devnull@localhost> | |
| Date: Wed Apr 3 03:01:58 2019 -0700 | |
| New debian hostname |
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
| [Unit] | |
| Description=Hostapd IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator | |
| #Wants=network-online.target | |
| After=network-online.target | |
| BindsTo=sys-subsystem-net-devices-%i.device | |
| After=sys-subsystem-net-devices-%i.device | |
| #FailureAction=reboot-force | |
| OnFailure=systemd-reboot.service | |
| OnFailureJobMode=ignore-dependencies | |
| StartLimitBurst=3 |
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
| commit 318dcc2daf1bf6f297eed022699c39354eab4699 | |
| gpg: Signature made Tue 23 Apr 2019 06:09:08 AM PDT | |
| gpg: using RSA key F6CC1F4DF325EACBBE2532481F299543498470BA | |
| gpg: issuer "justincapella@gmail.com" | |
| gpg: Good signature from "Justin Capella <justincapella@gmail.com>" [ultimate] | |
| Author: b1tninja <devnull@localhost> | |
| Date: Tue Apr 23 06:09:08 2019 -0700 | |
| Check that perf event is properly allocated, combine constructor |
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 selenium import webdriver | |
| from selenium.common.exceptions import WebDriverException | |
| from pprint import pprint | |
| from urllib.parse import urljoin | |
| profiles = dict() | |
| myspace_url = 'https://www.myspace.com/' | |
| img_suffix = '600x600.jpg' | |
| visited = set() |
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
| commit 9519ee51ecd775e4beaf7625c79207e78df9e0d7 | |
| gpg: Signature made Mon 06 May 2019 09:50:33 PM PDT | |
| gpg: using RSA key F6CC1F4DF325EACBBE2532481F299543498470BA | |
| gpg: issuer "justincapella@gmail.com" | |
| gpg: Good signature from "Justin Capella <justincapella@gmail.com>" [ultimate] | |
| Author: Justin Capella <justincapella@gmail.com> | |
| Date: Mon May 6 21:50:33 2019 -0700 | |
| opendir |
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
| offsets=($(egrep "__kcrctab" /proc/kallsyms | cut -d " " -f 1 | sort -u)); | |
| for ((i=0; i<$((${#offsets[@]}-1)); i++)); do | |
| start=$((0x${offsets[$i]})); | |
| stop=$((0x${offsets[(($i+1))]})); | |
| len=$(($stop-$start)); | |
| dd if=/dev/mem bs=${len} skip=${start} count=1 status=none; | |
| done | od --endian little -t x4 -w4 -A |
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
| PACKAGER="Justin Capella <justincapella@gmail.com>" | |
| pkgname="fft_eval-git" | |
| provides=("${pkgname%-git}") | |
| conflicts=("${pkgname%-git}") | |
| arch=("x86_64") | |
| depends=("sdl2" "sdl2_ttf") | |
| optdepends=("ttf-liberation") | |
| source=("${pkgname%-git}::git+https://github.com/simonwunderlich/FFT_eval.git") | |
| pkgrel=1 | |
| pkgver=0.73 |