1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
| // ==UserScript== | |
| // @name Webpage Saver v2.1 | |
| // @namespace https://github.com/gildas-lormeau/SingleFile | |
| // @author Intika https://github.com/intika | |
| // @version 2.1 | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (async function() { |
| ### Flatpak Repos | |
| List packages on a repo : | |
| flatpak remote-ls repon-name --user | |
| flatpak remote-ls | |
| Install packages : | |
| flatpak --user install repo-name package-name io.liri.Platform | |
| Flathub: |
| <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"> | |
| <html> | |
| <head> | |
| <title>.</title> | |
| <style type="text/css"> | |
| @media screen, print { | |
| body { | |
| font-family: {{ standardFamilyFont }} ! important; | |
| font-size: {{ mediumFontSize}}px ! important; | |
| color: white ! important; |
1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
| diff --git a/Android.mk b/Android.mk | |
| index e53b863..1d3854e 100644 | |
| --- a/Android.mk | |
| +++ b/Android.mk | |
| @@ -8,7 +8,6 @@ LOCAL_PATH:= $(call my-dir) | |
| # /system/etc/mkshrc | |
| include $(CLEAR_VARS) | |
| - | |
| LOCAL_MODULE:= mkshrc |
| import json | |
| import urllib.request as urx | |
| import sys | |
| import keyboard | |
| # rl -X PUT "https://api.spotify.com/v1/me/tracks?ids=ssadasdasd" -H "Accept: application/json" | |
| globalauth = "Bearer TOKEN" | |
| isquit = False |
| #!/usr/bin/env bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |
| You can specify a perfered TLS 1.3 cipher suites list in Nginx by the following setting: | |
| ssl_ciphers TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256|ECDHE+AESGCM:HIGH:!aNULL:!eNULL:!MD5; | |
| The TLS 1.3 and TLS 1.2- cipher suites are separated by a '|', notice that you neet to list the full name of TLS 1.3 cipher suites according to OpenSSL Wiki. | |
| Only tested on nginx/1.15.7 with OpenSSL 1.1.1a. | |
| See https://x-nagi.com/2018/11/nginx-tls1-3-patch.html for details. | |
| --- | |
| diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c | |
| index a281fba..7e2809b 100644 |
dnf install bzr
pip install email fastimport
then install this rpm with --nodeps python-module-bzr-fastimport-0.13.0-alt6.noarch.rpm
bzr branch lp:p2psp
| Step 1. Preparation | |
| -------------------- | |
| First take care of the dependencies for Android Application Development. | |
| Dependencies are - | |
| 1. Java | |
| 2. ant | |
| 3. Eclipse and Android Development tools (IDE) | |
| 4. Android SDK and NDK | |
| 5. adb |