http://rzymek.github.io/geomap/
https://github.com/rzymek/mapgrid
Układy współrzędnych:
Docs, PDF
Inny soft:
| LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so | |
| LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so | |
| LoadModule proxy_ajp_module /usr/lib/apache2/modules/mod_proxy_ajp.so | |
| LoadModule cluster_slotmem_module /usr/lib/apache2/modules/mod_cluster_slotmem.so | |
| LoadModule manager_module /usr/lib/apache2/modules/mod_manager.so | |
| LoadModule proxy_cluster_module /usr/lib/apache2/modules/mod_proxy_cluster.so | |
| LoadModule advertise_module /usr/lib/apache2/modules/mod_advertise.so | |
| #NameVirtualHost *:80 | |
| ManagerBalancerName balancer |
| <subsystem xmlns="urn:jboss:domain:undertow:2.0"> | |
| <handlers> | |
| <reverse-proxy name="my-handler"> | |
| <host name="slave-1" outbound-socket-binding="http-s1"/> | |
| <host name="slave-2" outbound-socket-binding="http-s2"/> | |
| </reverse-proxy> | |
| </handlers> | |
| ... | |
| <socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}"> | |
| ... |
| mvn install -DskipTests -Dmaven.main.skip=true -Dmaven.test.skip=true |
http://rzymek.github.io/geomap/
https://github.com/rzymek/mapgrid
Układy współrzędnych:
Docs, PDF
Inny soft:
| #!/bin/bash | |
| echo -en '\033[33m' | |
| git rev-parse --abbrev-ref HEAD | |
| echo -en '\033[0m' | |
| git status -s $* |
| #!/bin/bash | |
| #title :wildfly-install.sh | |
| #description :The script to install Wildfly 10.x | |
| #more :http://sukharevd.net/wildfly-8-installation.html | |
| #author :Dmitriy Sukharev | |
| #date :2015-10-24T17:14-0700 | |
| #usage :/bin/bash wildfly-install.sh | |
| #tested-version :10.0.0.CR3 | |
| #tested-distros :Debian 7,8; Ubuntu 15.10; CentOS 7; Fedora 22 |
| $('#words-table tbody tr').remove() | |
| var lessons = $('a[href*="/studentView/"]').map((idx,it)=>{return {name:$(it).text(), link:it.href}}).toArray().reverse(); | |
| $('.footer').html('') | |
| var words=[]; | |
| var left=lessons.length | |
| lessons.forEach((lesson,idx)=>{ | |
| $.get(lesson.link, data => { | |
| $('.footer').html(`<div id="fetched_${idx}">${data}</div>`) | |
| words[idx]=$(`#fetched_${idx} #words-table tbody tr`).toArray() | |
| //.filter(tr => $(tr).find('td').length === 3) |
| #!/bin/bash | |
| # Give the usual warning. | |
| clear; | |
| echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds..."; | |
| sleep 10; | |
| clear; | |
| # Download and extract exploit files. | |
| echo "[INFO] Downloading exploit files from GitHub..."; |
| adb shell sm list-disks | |
| adb shell sm list-volumes all | |
| adb shell sm set-force-adoptable true | |
| adb shell sm partition disk:179,64 private | |
| adb shell sm set-force-adoptable false |