foo bar baz qux
Hello Foo
Hello Bar
Hello Baz
Hello Qux
find . -mtime +0 # find files modified greater than 24 hours ago | |
find . -mtime 0 # find files modified between now and 1 day ago | |
# (i.e., in the past 24 hours only) | |
find . -mtime -1 # find files modified less than 1 day ago (SAME AS -mtime 0) | |
find . -mtime 1 # find files modified between 24 and 48 hours ago | |
find . -mtime +1 # find files modified more than 48 hours ago |
(ns dactyl-keyboard.dactyl | |
(:refer-clojure :exclude [use import]) | |
(:require [clojure.core.matrix :refer [array matrix mmul]] | |
[scad-clj.scad :refer :all] | |
[scad-clj.model :refer :all] | |
[unicode-math.core :refer :all])) | |
(defn deg2rad [degrees] | |
(* (/ degrees 180) pi)) |
# remove echo to execute the actual mv command | |
find . -type f -name "prefix-*.json" -exec bash -c 'echo mv "$1" "${1/find/replace}"' -- {} \; |
# generated by PrusaSlicer 2.0.0 on 2019-06-29 at 16:47:15 | |
[filament:Proto-Pasta PPU jamiehs] | |
filament_colour = #5EDBE8 | |
filament_max_volumetric_speed = 4 | |
filament_type = PLA | |
first_layer_bed_temperature = 60 | |
first_layer_temperature = 230 | |
inherits = Generic PLA | |
max_fan_speed = 80 |
{ | |
"scripts": { | |
"postinstall": "if [ -n \"$npm_config_production\" ]; then npm run build; fi" | |
} | |
} |
[client] | |
user='root' | |
password='123' |
{ | |
// The default number of parapraphs to be inserted | |
"default_paragraph_count": 1, | |
// The default number of words for each parapraph to be inserted | |
"default_word_count": 7, | |
// If true, the generated text will always starts with "Lorem ipsum" | |
"always_start_with_lorem_ipsum": false, |
function absElemHeight(element){ | |
var max_y = 0; | |
$.each( $(element).find('*'), function(idx, desc){ | |
max_y = Math.max(max_y, $(desc).offset().top + $(desc).height()); | |
}); | |
return max_y - $(element).offset().top; | |
} | |
function absElemHeight(element){ |
<?php // only keep the opening PHP tag if your functions.php doesn't have one. | |
// Filter the iframe URL for Vimeo | |
add_filter( 'fve_vimeo_iframe_url', 'fve_vimeo_iframe_url', 10, 2 ); | |
function fve_vimeo_iframe_url( $vimeo_iframe_url, $video_meta ) { | |
return 'https://player.vimeo.com/video/' . $video_meta['id'] . '?portrait=0&byline=0&title=0'; | |
} | |
// Filter the permalink for Vimeo | |
add_filter( 'fve_vimeo_permalink', 'fve_vimeo_permalink', 10, 2 ); |