Skip to content

Instantly share code, notes, and snippets.

@pahud
pahud / delete_all_awslogs.sh.md
Last active October 18, 2023 09:13
delete all aws log groups

specify the region

export AWS_DEFAULT_REGION=ap-northeast-1
aws logs describe-log-groups --query 'logGroups[*].logGroupName' --output table | \
awk '{print $2}' | grep -v ^$ | while read x; do  echo "deleting $x" ; aws logs delete-log-group --log-group-name $x; done

only delete loggroup name starting with /aws/lambda

/* Prevent the text contents of draggable elements from being selectable. */
[draggable] {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
/* Required to make elements draggable in old WebKit */
-khtml-user-drag: element;
-webkit-user-drag: element;
}
@DiegoTc
DiegoTc / Sitelist.html
Last active August 29, 2015 14:02
Bone101 tutorials at beagleboard.org
<div class="container" id="c1">
<a href="tutorial?gistid=855e0d8d0b6f6f53f06b"><div class="bonecard" gistid="855e0d8d0b6f6f53f06b"></div></a>
<a href="tutorial?gistid=16a217fd3a16d0645d5f"><div class="bonecard" gistid="16a217fd3a16d0645d5f"></div></a>
<a href="tutorial?gistid=dcc0c96306c138d656a7"><div class="bonecard" gistid="dcc0c96306c138d656a7"></div></a>
<a href="tutorial?gistid=eac17d013b3a7c335a19"><div class="bonecard" gistid="eac17d013b3a7c335a19"></div></a>
<a href="tutorial?gistid=258d4471dd36c31107d4"><div class="bonecard" gistid="258d4471dd36c31107d4"></div></a>
<a href="tutorial?gistid=7937e0c619af21693f79"><div class="bonecard" gistid="7937e0c619af21693f79"></div></a>
<a href="tutorial?gistid=786401651ca972197345"><div class="bonecard" gistid="786401651ca972197345"></div></a>
<a href="tutorial?gistid=223fcdc5882c9b6cb2f7"><div class="bonecard" gistid="223fcdc5882c9b6cb2f7"></div></a>
<a href="tutorial?gistid=c5fcfa04d2c12ed4f3d2"><div class="bonecard" gistid="c5fcfa04d2c12ed4f3d2">
@lelandbatey
lelandbatey / whiteboardCleaner.md
Last active June 16, 2024 13:44
Whiteboard Picture Cleaner - Shell one-liner/script to clean up and beautify photos of whiteboards!

Description

This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.

The script is here:

#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"

Results

@geedelur
geedelur / summernote_show_hide_toolbar.js
Last active March 12, 2019 23:47
show/hide summernote toolbar
function summernoteLoad() {
var $summernoteTextAreas = $('[data-control="summernote"]');
//cargar summernote
$summernoteTextAreas.summernote({
onImageUpload: summernoteOnImageUpload,
onkeyup: function() {
syncSummernoteTextArea($summernoteTextAreas);
validate(false);
},
onblur: function() {