This script helps adding a global count down timer that:
- Counts from a pre-defined time down to 0.
- When it counts down to 0, automatically submit the survey.
- When clicking on
Yes
option on specific pages, extend the timer for another 10s.
title |
---|
<img src="media/image1.png" style="width:1.1483in;height:2.4361in" /><img src="media/image2.png" style="width:8.26771in;height:8.01775in" />Victorian Carbon Farming Program Pilot |
Project Guidelines for Grant Funding
Victorian Carbon Farming Program
North Central Catchment Management Authority Region Pilot
PROCESS-NAME,nsurlsessiond | |
DOMAIN-SUFFIX,mzstatic.com |
syntax on | |
set noerrorbells | |
set shiftwidth=2 | |
set expandtab | |
set smartindent | |
set nu | |
set nowrap | |
set smartcase | |
set noswapfile |
const sh = require("shelljs"); | |
const exiftool = require("exiftool-vendored").exiftool; | |
const folder = | |
"/Users/rankun203/Downloads/670 Claude Monet Paintings/670 Amazing Claude Monet Paintings [Up to 4500 Px]-1"; | |
let files = []; | |
sh.ls(`${folder}/Pics/Monet Paintings/`).forEach((f) => files.push(f)); | |
files = files.sort((a, b) => { |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use 5.010; | |
# ./ping-google.perl google.com | |
use Net::Ping; | |
my $host = "$ARGV[0]" || 'google.com'; |
defaults write com.apple.Dock autohide-delay -float 0; and killall Dock |
#!/usr/bin/env bash | |
# Check local dev | |
check_command() { | |
WHERE=`whereis $1` | |
TIP=$2 | |
if [[ -z "${WHERE}" ]]; then | |
echo "$1 is required, ${TIP}" | |
else |
#!/usr/bin/env bash | |
# Functions -------- | |
ensure_env () { | |
ENV_NAME="$1" | |
ENV_VAL=${!ENV_NAME} | |
if [[ -z "${ENV_VAL}" ]]; then | |
echo "${ENV_NAME} does not exists, exiting." | |
exit | |
else |