Skip to content

Instantly share code, notes, and snippets.

0x1002:0x0000:::[NOTE Editing the local copy of this file will lead to a FAH error.]
0x1002:0x0002:::[R9600 Pro] (Asus OEM for HP - Primary)
0x1002:0x0003:::[R9600 Pro] (Asus OEM for HP - Secondary)
0x1002:0x0004:::[Rage Fury Pro]
0x1002:0x000a:::[Radeon 7000]
0x1002:0x000b:::[Radeon 7000]
0x1002:0x000d:::[Radeon X1200]
0x1002:0x0014:::[Rage Fury Pro]
0x1002:0x001a:::[Radeon 7000]
0x1002:0x001c:::[Rage 128 Pro 4XL]
@neofob
neofob / quik_note.md
Last active December 6, 2021 03:23
wireguard vpn
---
- hosts: all
  any_errors_fatal: true
  gather_facts: yes
  tasks:
    - name: update packages
      apt:
        update_cache: yes
        cache_valid_time: 3600
@neofob
neofob / zram
Last active December 29, 2020 09:24
Init script for zram, the original script is for kernel 3.15 and earlier. Later kernel can set the number of compression stream at /sys/block/zramX/max_comp_streams
#!/bin/sh
### BEGIN INIT INFO
# Provides: zram
# Required-Start: $local_fs
# Required-Stop: $local_fs
# Default-Start: S
# Default-Stop: 0 1 6
# Short-Description: Use compressed RAM as in-memory swap
# Description: Use compressed RAM as in-memory swap
@neofob
neofob / RA.md
Created October 19, 2020 17:45
Reston Association Contact Information

HOA Information

  • The name of the HOA: Reston Association
  • Property management contact name: Member Services
  • Phone number: (703)435-6530
  • Email address: member_services@reston.org
@neofob
neofob / docker.yml
Last active September 23, 2020 17:51 — forked from rbq/docker.yaml
Install Docker CE on Ubuntu using Ansible
---
- hosts: all
tasks:
- name: Install prerequisites for Docker repository
apt:
name: ['apt-transport-https', 'ca-certificates', 'curl', 'gnupg2', 'software-properties-common']
update_cache: yes
- name: Add Docker GPG key
apt_key: url=https://download.docker.com/linux/ubuntu/gpg
@neofob
neofob / docker-compose.yml
Last active August 28, 2020 05:14
pihole docker-compose
---
version: "3"
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services:
pihole:
container_name: pihole
hostname: pihole
image: pihole/pihole:latest
# Reserve 80 and 443 for other services
@neofob
neofob / chuphinh.md
Last active March 13, 2020 09:26
Quay phim, chụp ảnh là quyền của dân

Thứ trưởng Bộ Công an Lê Thế Tiệm: Quay phim, chụp ảnh là quyền của dân

[Tuổi Trẻ Online][0]
04/12/2010 07:27 (GMT + 7)

M.Q. - ANH THOA

TT - Liên quan vụ ba người “bị cảnh sát thu máy vì quay phim” tại xã Tân Đông Hiệp, huyện Dĩ An, tỉnh Bình Dương, thượng tướng Lê Thế Tiệm cho biết Bộ Công an sẽ kiểm tra lại, yêu cầu Công an Bình Dương báo cáo sự việc.

Theo ông Tiệm, việc thực hiện quay phim, chụp ảnh là quyền của người dân và đó là hoạt động thể hiện chức năng kiểm tra, giám sát của người dân đối với hoạt động của cơ quan công an. Do đó người dân sử dụng máy quay phim, chụp ảnh đối với công an không phải là sai phạm.

@neofob
neofob / KernelHeaders.md
Created July 5, 2013 20:01
KernelHeaders on KernelNewbies.org

Header files in the Linux kernel are used for two purposes:

  1. to define interfaces between components of the kernel, and
  2. to define interfaces between the kernel and user space

== Internal modules ==

Internal interfaces between modules are defined anywhere in below linux/include/ or linux/arch/*/include/. Interfaces between source files in a single module should be put into the same directory as the module source code, which avoids polluting the global header space.

== External modules ==