国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
| ❱ git config user.signingKey 38AF394C | |
| ❱ git config commit.gpgSign true | |
| ❱ echo "test" | gpg --clearsign | |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA256 | |
| test | |
| gpg: signing failed: Inappropriate ioctl for device | |
| gpg: [stdin]: clear-sign failed: Inappropriate ioctl for device |
| # Dracula Theme for Consoles | |
| # | |
| # Console colors are set by the `setvtrgb` command which takes as argument a | |
| # file of exactly three lines of text. These lines are the 0..255 values for | |
| # | |
| # red: black,red,green,yellow,blue,magenta,cyan,white,bold_black,bold_red,bold_green,bold_yellow,bold_blue,bold_magenta,bold_cyan,bold_white | |
| # grn: black,red,green,yellow,blue,magenta,cyan,white,bold_black,bold_red,bold_green,bold_yellow,bold_blue,bold_magenta,bold_cyan,bold_white | |
| # blu: black,red,green,yellow,blue,magenta,cyan,white,bold_black,bold_red,bold_green,bold_yellow,bold_blue,bold_magenta,bold_cyan,bold_white | |
| # | |
| # Needless to say, this is a very annoying format. Here are the values for |
之前用的光猫不小心进水烧坏了,然后搞了个中兴 F460 拿来用,网上办法多如牛毛,但是试了都不行
电信贼的很,只要注册 LOID 之后他就把 telnet 给你关了,然后啥也搞不成,今天琢磨了一整天成功拿到telecomadmin密码,并能随时TELNET进路由器。
不破解就有普通用户权限,除了Wi-Fi密码,什么也改不了, 而且 Wi-Fi 名称必须得 ChinaNet 开头,更要命的是电信可以随时远程控制路由器
最简单的办法是有线或无线连接到路由器后访问 http://192.168.1.1/web_shell_cmd.gch 然后执行以下命令来获取超级用户密码
This document compiles 2018 coverage around post-modern packaging technologies for Linux, including packaging formats like Snaps and Flatpaks, systems like Nix and Guix and full distros such as Atomic or Clear Linux.
This curation and commentary are current as of 18 June 2018. The curation was prepared by José Miguel Parrella (@bureado) as part of his session at Open Source Summit Japan: Package Management and Distribution in a Cloud World.
We compile these resources in an effort to provide individual developers and organizations with current coverage on the state-of-the-art and motivations of the current post-modern packaging landscape with the intention to increase readiness in experimenting with, evaluating and potentially adopting said technologies.
| #DietPi setup script for RTL-SDR/Multimon-ng/Pagermon for decoding pager messages(FLEX/POCSAG etc.) | |
| cat <<EOF >no-rtl.conf | |
| blacklist dvb_usb_rtl28xxu | |
| blacklist rtl2832 | |
| blacklist rtl2830 | |
| EOF | |
| mv no-rtl.conf /etc/modprobe.d/ |
| #EXTM3U name="bj-unicom-iptv" | |
| #EXTINF:-1,BTV体育高清 | |
| http://192.168.1.4:8012/rtp/239.3.1.243:8000 | |
| #EXTINF:-1,BTV北京卫视高清 | |
| http://192.168.1.4:8012/rtp/239.3.1.241:8000 | |
| #EXTINF:-1,淘剧场 | |
| http://192.168.1.4:8012/rtp/239.3.1.95:8001 | |
| #EXTINF:-1,淘电影 | |
| http://192.168.1.4:8012/rtp/239.3.1.250:8001 | |
| #EXTINF:-1,4K超清 |
git log --graph --oneline --decorate ( git fsck --no-reflog | awk '/dangling commit/ {print $3}' )This will show you all the commits at the tips of your commit graph which are no longer referenced from any branch or tag – every lost commit, including every stash commit you’ve ever created, will be somewhere in that graph.
| # On Mac OSX | |
| # Will run AIRODUMP scan of all BSSIDs | |
| # sudo airport -s | |
| # Will run AIRODUMP sniff on channel 11 | |
| # sudo airport en0 sniff 11 | |
| # Atm, I can't find how to sniff on all channels at the same time. | |
| if [ $# -eq 0 ] |
| FROM i386/alpine:latest | |
| # https://wiki.gentoo.org/wiki/OpenRC/Baselayout_1_to_2_migration#Boot_runlevel | |
| # https://wiki.alpinelinux.org/wiki/Installing_Alpine_Linux_in_a_chroot#Entering_your_chroot | |
| RUN apk update && \ | |
| apk upgrade && \ | |
| apk add --no-cache linux-vanilla vim openrc && \ | |
| rc-update add devfs sysinit && \ | |
| rc-update add root boot && \ |