Record a video of your app
Developer options -> Check show touches
adb shell screenrecord /sdcard/video.mp4
adb pull /sdcard/video.mp4
function adbc () { | |
IP=`adb shell ifconfig wlan0 | grep 'inet addr:' | cut -d: -f2 | awk '{print $1}'` | |
adb tcpip 5555 | |
adb connect $IP | |
adb devices | |
} | |
function adbscr () { | |
echo "Shoot" | |
adb shell screencap -p /sdcard/screen.png |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader | |
== Shell |
/** | |
* Find all cells (td/th) in the column of the current cell. | |
* (excluding rows with cells that span multiple columns.) | |
*/ | |
(function($) { | |
$.fn.column = function() { | |
return $(this) | |
.filter('th, td') |
/******/ (function(modules) { // webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; | |
/******/ | |
/******/ // The require function | |
/******/ function __webpack_require__(moduleId) { | |
/******/ | |
/******/ // Check if module is in cache | |
/******/ if(installedModules[moduleId]) { | |
/******/ return installedModules[moduleId].exports; |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
$Invoke = Invoke-WebRequest -Headers @{"API-Key" = "$apikey"} -Method Post ` -Body "{`"url`":`"$url`"}" -Uri https://urlscan.io/api/v1/scan/ ` -ContentType application/json |
<?php | |
/** | |
* Use an HTML table to create a Caldera Forms email layout that is roughly the same as form layout | |
* | |
* Work in progress | |
*/ | |
add_action( 'caldera_forms_mailer', function( $mail, $data, $form, $entry_id ){ | |
include_once CFCORE_PATH . 'classes/caldera-grid.php'; |