Skip to content

Instantly share code, notes, and snippets.

View Lwdthe1's full-sized avatar

Lincoln W Daniel Lwdthe1

View GitHub Profile
@Lwdthe1
Lwdthe1 / License.txt
Last active March 31, 2016 22:28
A jQuery function to run a function when an element is long pressed
DO WHATEVER YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2016 Lincoln W Daniel <http://lincolnwdaniel.com>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
@Lwdthe1
Lwdthe1 / PhotoScalerAndSaver.java
Last active January 15, 2022 02:03
A demonstration of three Java functions for scaling a photo's bitmap and saving it to a file without contorting the photo's dimensions. This is in response to this stackoverflow question: http://stackoverflow.com/questions/16060143/android-take-photo-and-resize-it-before-saving-on-sd-card/36210688#36210688
public class PhotoScalerAndSaver {
public static main(String[] args) {
//TODO: create your photo here
//Convert your photo to a bitmap
Bitmap photoBm = (Bitmap) "your Bitmap image";
//scale and save the photo to a file on the directory
saveScaledPhotoToFile(Bitmap photoBm)
@Lwdthe1
Lwdthe1 / jquery.setDoubleTap.js
Last active May 9, 2016 20:27
A simple jQuery function to capture double tap (or click) event on an element.
(function($){
$.fn.setDoubleTap = function(doubleTap){
var lastTapTime;
var doDoubleTap = function() {
//set the time of this click
var timeNow = new Date().getTime();
//calculate the time since last click
var timeSinceLastTap = timeNow - lastTapTime;
//check if it's been long enough to deem this click a part of a double tap sequence
@iamtekeste
iamtekeste / render.js
Created May 27, 2022 22:27
Craft.js renderer
// source: https://paste.zauberfisch.com/d/62871445eda3b/craftjs-frontend.js.txt
import React, {Fragment} from "react"
import Container from "./Container.jsx"
import Text from "./Text.jsx"
import Button from "./Button.jsx"
const contentElements = {
Container,
Text,