Open http://192.168.1.1/backupsettings.html, save the config file.
Find X_CT-COM_TeleComAccount
.
Copy the password, then pipe to base64 -d
.
That's the password!
Open http://192.168.1.1/backupsettings.html, save the config file.
Find X_CT-COM_TeleComAccount
.
Copy the password, then pipe to base64 -d
.
That's the password!
var options = { | |
smaller: 18, | |
bigger: 20, | |
}; | |
var northInferSouthMin; | |
var southInferNorthMax; | |
function northAnswer (trees) { | |
northInferSouthMin = options.bigger - southInferNorthMax; | |
// console.log(' northInferSouthMin', northInferSouthMin); |
#include "PinChangeInterrupt.h" | |
// Choose a valid PinChangeInterrupt pin of your Arduino board | |
#define pcintThrottle 12 // A4 | |
#define pcintAileron 13 // A5 | |
void rising1(void); | |
void falling1(void); | |
void rising2(void); |
#include "PinChangeInterrupt.h" | |
// Choose a valid PinChangeInterrupt pin of your Arduino board | |
#define pcintThrottle 12 // A4 | |
#define pcintAileron 13 // A5 | |
/* #define pcintThrottle 13 // A4 */ | |
volatile int thro_pwm_value = 0; | |
volatile int thro_prev_time = 0; | |
volatile int aile_pwm_value = 0; |
#!/bin/bash | |
# monitor STDIN | |
# run command when interval of lines come in smaller than sepecific duration | |
DURATION=2 # in seconds | |
LINES_COUNT=1 | |
COMMAND="echo Aha!" | |
SECONDS=$DURATION |
x | |
x x | |
xx xx xx | |
x x xx xx | |
xx x x xx | |
xx x x xx x x | |
x x x | |
x x | |
xx |
package hanabi | |
import ( | |
"math/rand" | |
"time" | |
) | |
const ( | |
white = iota | |
yellow |
<div id="main"> | |
<div id="window"> | |
<div class="parent"></div> | |
</div> | |
</div> | |
<style> | |
div#main { | |
width: 100%; | |
} |
cat > ~/.gnupg/gpg-agent.conf <<EOF | |
default-cache-ttl 600 | |
max-cache-ttl 7200 | |
enable-ssh-support | |
EOF | |
gpgconf --kill gpg-agent | |
gpg-connect-agent reloadagent /bye | |
# man gpg-agent |
package main | |
import ( | |
"encoding/hex" | |
"fmt" | |
) | |
func main() { | |
const sample = "54747A0E4ACF4161D00D244ED341F4329E1E02" |