- Open group info
- Click more to show all group members
- Open Javascript console
- Paste the code
- Admins aren't exported
- Users without image cannot be exported
# put in /etc/systemd/system/netns-wg.service | |
[Unit] | |
Description=Start a VPN Network Namespace | |
After=network.target | |
[Service] | |
Type=oneshot | |
RemainAfterExit=true |
[Unit] | |
Description=Test NetworkNamespacePath with DynamicUser | |
After=network-online.target | |
Wants=network-online.target | |
[Service] | |
Type=simple | |
# Use DynamicUser to create a temporary user for the service | |
DynamicUser=true |
//var bkg = chrome.extension.getBackgroundPage(); | |
var calls = {}; | |
// Shows settings on install. | |
chrome.runtime.onInstalled.addListener(function(details) { | |
if(details.reason && (details.reason === 'install') || (details.reason === 'update')){ | |
chrome.tabs.create({url: "options.html"}); | |
} | |
}); | |
// Show settings when clicking on the icon. |
# begin build properties | |
# autogenerated by buildinfo.sh | |
ro.build.id=NJH47F | |
ro.build.display.id=lineage_a5y17lte-userdebug 7.1.2 NJH47F dbd9ed3594 test-keys | |
ro.build.version.incremental=dbd9ed3594 | |
ro.build.version.sdk=25 | |
ro.build.version.preview_sdk=0 | |
ro.build.version.codename=REL | |
ro.build.version.all_codenames=REL |
08-13 18:30:43.017 2553 2553 D boot : cbd: get_cmdline_str: find str androidboot.debug_level=0x4f4c form /proc/cmdline | |
08-13 18:30:43.017 2553 2553 D boot : cbd: check_debug_level: androidboot.debug_level=0x4f4c, 0 | |
08-13 18:30:43.017 2553 2553 D boot : cbd: check_debug_level: debug level=0, cp_debug=0 | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: Daemon Mode | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: SS310 modem | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: boot SHMEM link | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: main SHMEM link | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: partition number : platform/13540000.dwmmc0/by-name/RADIO | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: partition path : /dev/block/platform/13540000.dwmmc0/by-name/RADIO | |
08-13 18:30:43.017 2553 2553 I chatty : uid=1001(radio) /sbin/cbd expire 25 lines |
#!/bin/bash | |
# Check if a value exists in an array | |
# @param $1 mixed Needle | |
# @param $2 array Haystack | |
# @return Success (0) if value exists, Failure (1) otherwise | |
# Usage: in_array "$needle" "${haystack[@]}" | |
# See: http://fvue.nl/wiki/Bash:_Check_if_array_element_exists | |
in_array() { | |
local hay needle=$1 |
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; //overwrite browser | |
height: 100%; | |
} | |
.header { | |
background-color: #D0D0D0; |
RailsRoot = File.expand_path "#{File.dirname __FILE__}/.." | |
PidsDir = "#{RailsRoot}/tmp/pids" | |
OldPidFile = "#{PidsDir}/unicorn.pid.oldbin" | |
ListenAddress = "127.0.0.1" | |
ListenPort = 50000 | |
UnixListen = "tmp/unicorn.sock" | |
Backlog = 2048 | |
Workers = 4 |
# based on http://sounoob.com.br/consultar-frete-utilizando-webservice-dos-correios-php/ | |
require 'rubygems' | |
require 'uri' | |
require 'net/http' | |
require 'active_support/all' | |
require 'nokogiri' | |
Pac = 41106 |