I hereby claim:
- I am gonfva on github.
- I am gonfva (https://keybase.io/gonfva) on keybase.
- I have a public key ASDn5E7Y5OcRcxi66aLWilB0frYEzPF3lqAWAVM9ou7OOQo
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <title>Test</title> | |
| </head> | |
| <body> | |
| <form name="test"> | |
| <select style="width:700px;" name="testSelect"> | |
| <option value="1">Test1</option> | |
| <option value="12">01234567890123456789012345678901234567890123456789 | |
| 0123456789012345678901234567890123456789012345678901234567890123456789 |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:jee="http://www.springframework.org/schema/jee" xmlns:jdbc="http://www.springframework.org/schema/jdbc" | |
| xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd | |
| http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd | |
| http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd | |
| http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd | |
| http://www.springframework.org/schema/aop http://www.sp |
| #!/bin/bash | |
| user=***** | |
| password=****** | |
| useragent="SomethingUNIQUE/1 email@example.com" | |
| testippath=****** | |
| oldIP=`cat $testippath/currentIP` | |
| myIP=`curl -s "http://wtfismyip.com" | grep -o "[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}"` |
| #!/bin/bash | |
| pwd=***** | |
| if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then | |
| # First try to load from a user install | |
| source "$HOME/.rvm/scripts/rvm" | |
| elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then | |
| # Then try to load from a root install |
| SUBSYSTEMS==”usb”, ATTRS{idVendor}==”0fce″, ATTRS{idProduct}==”0171″, MODE=”0666″ | |
| SUBSYSTEMS==”usb”, ATTRS{idVendor}==”0fce″, ATTRS{idProduct}==”0dde″, MODE=”0666″ | |
| SUBSYSTEMS==”usb”, ATTRS{idVendor}==”0fce″, ATTRS{idProduct}==”adde″, MODE=”0666″ |
| curl -XPUT http://localhost:9200/test -d' | |
| { | |
| "index" : { | |
| "analysis" : { | |
| "analyzer" : { | |
| "default" : { | |
| "char_filter" : [ | |
| "html_strip" | |
| ], | |
| "tokenizer" : "standard" |
| public class CheckUser { | |
| public String checkUser(SESEvent event, Context c) { | |
| c.getLogger().log("Inside the function\n"); | |
| if (event == null || event.getRecords() == null) { | |
| c.getLogger().log("Events is null\n"); | |
| return "STOP_RULE"; | |
| } | |
| return "CONTINUE"; | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| apiVersion: admissionregistration.k8s.io/v1beta1 | |
| kind: ValidatingWebhookConfiguration | |
| metadata: | |
| name: pullPolicyMutator | |
| webHooks: | |
| - name: mutator | |
| rules: | |
| - apiGroups: | |
| - "" | |
| apiVersions: |
| import requests | |
| import json | |
| import sqlite3 | |
| import time | |
| # Define the API endpoint URL and bearer token | |
| bearer_token = <put token> | |
| server_url = https://api.<something here>.com/chat/v2/conversations/ |