Hello world
This is defined on \
several **lines**
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WiFi.h> | |
#include <HTTPClient.h> | |
const char *ssid = ""; // Your WiFi SSID | |
const char *password = ""; // Your WiFi password | |
/** | |
* If WiFi is connected, the ESP32 will use ADC2 pins (25, 26, 27, 14, 12, 13, 4, 2, 15) for WiFi. | |
* We must not use ADC2 pins for anything else. | |
* ADC1 INPUT ONLY: 34, 35, *36, 39 | |
* ADC1 INPUT / OUTPUT: *32, 33 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
import org.bouncycastle.crypto.AlphabetMapper; | |
import org.bouncycastle.crypto.util.BasicAlphabetMapper; | |
import org.bouncycastle.jcajce.spec.FPEParameterSpec; | |
import org.bouncycastle.jce.provider.BouncyCastleProvider; | |
import javax.crypto.Cipher; | |
import javax.crypto.KeyGenerator; | |
import javax.crypto.NoSuchPaddingException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'org.jetbrains.intellij' | |
// Disable all Gradle Tasks for the gradle-intellij-plugin as we only use the plugin for the dependencies | |
buildPlugin.enabled = false | |
buildSearchableOptions.enabled = false // we only need to disable this one | |
jarSearchableOptions.enabled = false | |
patchPluginXml.enabled = false | |
prepareSandbox.enabled = false | |
prepareTestingSandbox.enabled = false | |
prepareUiTestingSandbox.enabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vertical-align: middle | |
http://phrogz.net/css/vertical-align/index.html | |
`vertical-align` can only be used on `table-cell` (such as td or elements with display: table-cell) and inline elements | |
(such as img or span with display:inline-block). | |
<div style="display:table-cell; vertical-align:middle"> ... </div> | |
<img align="middle" ...> | |
<img style="vertical-align:middle" ...> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bash: It requires no other tools | |
# cat < /dev/tcp/host/port or cat < /dev/udp/host/port | |
$ cat < /dev/tcp/127.0.0.1/22 | |
SSH-2.0-OpenSSH_5.3 | |
# telnet: telnet host port | |
$ telnet 127.0.0.1 22 | |
# nc: nc -zv host port1 port2 or port3-port4 | |
$ nc -zv 127.0.0.1 22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Second.cat() { | |
card.active() | |
} |
NewerOlder