This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Dynamic CSV Left Join Form</title> | |
</head> | |
<body> | |
<h1>Dynamic CSV Left Join</h1> |
This file contains 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
#!/bin/bash | |
# This function takes a file name as input | |
# and performs extraction based on the file type | |
function file_actions { | |
# Set the file name as a static variable | |
file_name=$1 | |
# Check the file name | |
if [[ $file_name == *.zip ]]; then |
This file contains 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
#!/usr/bin/env bash | |
# Define an array of directories to search | |
dirs=("/Users/dan/Downloads" "/Users/dan/Desktop" "/Users/dan/Documents") | |
# Define an empty array to store the recent files | |
recent_files=() | |
# Define a variable to store the highest timestamp | |
highscore=0 |
This file contains 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
[ | |
{ | |
"keys": [ | |
"ctrl+b" | |
], | |
"command": "show_overlay", | |
"args": { | |
"overlay": "command_palette" | |
} | |
}, |
This file contains 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
;Kiosk Keyboard with Skins | |
; | |
;Copyright (c) 2006-2015 Comfort Software Group | |
;ALL RIGHTS RESERVED | |
Height=152 | |
Width=276 | |
DefaultFitWidth=0 | |
DefaultLockAspectRatio=1 | |
DefaultMoveToBottom=0 | |
DefaultCenterInfo=1 |
This file contains 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
<VERSION>StrokeIt .9.4</VERSION> | |
<APP name="Default"> | |
Close Window [C] { | |
Alt+F4 = keys, hotkey "[ALT_DOWN][F4][ALT_UP]" | |
} | |
Down { | |
gesture = Down | |
New Command = keys, hotkey "[CTRL_DOWN][END][CTRL_UP]" | |
} |
This file contains 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
#!/bin/env bash | |
#requirements wget | |
if [ -z "$1" ] && [ -z "$2" ]; then | |
echo "No url provided. exiting..."; | |
elif [[ -z "$2" ]]; then | |
wget -r -l1 -H -t1 -nd -N -np -A jpg,jpeg,png,webm,gif -erobots=off $1; | |
rm *s.* | |
else | |
mkdir $2; |
This file contains 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
//find sku in json object list return arg[1] of that object | |
const filterIt = (sku, attr) => { | |
let arr = list.filter(function(asdf) { | |
return asdf.SKU == sku; | |
}); | |
return arr[0][attr]; | |
}; | |
//ramda find without for each | |
R.find(R.propEq('a', 2))(xs) |
This file contains 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
/* | |
==================================== | |
Small Screen - Tablet | |
==================================== | |
*/ | |
@media screen and (min-width: 768px) and (max-width: 991px) { | |
This file contains 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
name | |
short_description | |
sku | |
price | |
weight | |
color | |
notes | |
product_category_type | |
erp_sku | |
dimensions |
NewerOlder