I hereby claim:
- I am spawnrider on github.
- I am spawnrider (https://keybase.io/spawnrider) on keybase.
- I have a public key ASCSwFqHaw1H8Q0pbgwn_c5BICJzy6nDI7IdzQsc6TYQ3go
To claim this, I am signing this object:
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts, | |
that detects and handles AJAXed content. | |
Usage example: | |
waitForKeyElements ("div.comments", commentCallbackFunction); | |
//--- Page-specific function to do what we want when the node is found. | |
function commentCallbackFunction (jNode) { | |
jNode.text ("This comment changed by waitForKeyElements()."); | |
} |
I hereby claim:
To claim this, I am signing this object:
# PSEXEC is a standalone executable file that allows you to run commands on remote machines. | |
# You can download the tool from here: | |
# http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx | |
# Open a command line and type the follwoing: | |
psexec \\machinename reg add "hklm\system\currentcontrolset\control\terminal server" /f /v fDenyTSConnections /t REG_DWORD /d 0 | |
psexec \\remotecomputername netsh firewall set service remoteadmin enable | |
psexec \\remotecomputername netsh firewall set service remotedesktop enable |
# Exemples | |
# Listing des utilisateurs dans C:\Users | |
docker run --rm -v c:/Users:/data alpine ls /data | |
# Pré-requis - Suppression de l'image locale | |
docker rmi httpd | |
# 1 - Récupération d'une image | |
# Image Docker Apache HTTPD | |
# https://hub.docker.com/_/httpd/ |
# Example Dockerfile | |
FROM hello-world |
#include <b64.h> | |
#include <HttpClient.h> | |
#include <SPI.h> | |
#include <Ethernet.h> | |
#include <RCSwitch.h> | |
#include <DHT.h> | |
// To send RF commands | |
RCSwitch mySwitch = RCSwitch(); |
[ | |
{"id":1, "town":"Munich", "coord": {"lat": 48.1351253, "lng": 11.5819806}, "country":"Germany", "date":"2015-09-28", "flag": "http://flags.fmcdn.net/data/flags/small/de.png"}, | |
{"id":2, "town":"Hambourg", "coord": {"lat": 53.5510846, "lng": 9.9936818}, "country":"Germany", "date":"2015-09-28", "flag": "http://flags.fmcdn.net/data/flags/small/de.png"}, | |
{"id":3, "town":"New York", "coord" : {"lat": 40.7127837, "lng": -74.0059413}, "country":"USA", "date":"2015-09-28", "flag":"http://flags.fmcdn.net/data/flags/small/us.png"}, | |
{"id":4, "town":"Utrecht", "coord": {"lat": 52.09073739999999, "lng": 5.1214201}, "country":"Nederland", "date":"2015-09-29", "flag":"http://flags.fmcdn.net/data/flags/small/nl.png"}, | |
{"id":5, "town":"Diegem", "coord": {"lat": 50.8940397, "lng": 4.4362628}, "country":"Belgium", "date":"2015-09-29", "flag":"http://flags.fmcdn.net/data/flags/small/be.png"}, | |
{"id":6, "town":"Melbourne", "coord": {"lat": -37.814107, "lng": 144.96328}, "country":"Australia", "date":"2015-09-29", |
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome] | |
"SyncDisabled"=dword:00000000 | |
<?xml version="1.0" encoding="utf-8" ?> | |
<mappings> | |
<mapping type="urlmapservice"> | |
<value> http://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer</value> | |
</mapping> | |
<mapping type="selectablelayer"> | |
<value>joined_pipe</value> | |
</mapping> | |
</mappings> |
package your.domain.bpm.webapp.impl.security.auth; | |
import static org.camunda.bpm.engine.authorization.Permissions.ACCESS; | |
import static org.camunda.bpm.engine.authorization.Resources.APPLICATION; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.HashSet; | |
import java.util.Iterator; | |
import java.util.List; |