⌘ + Tab
⌘ + `
⌘ + option + V
THEN V
THEN enter
⌘ + Q
⌘ + W
::-webkit-scrollbar { | |
display: none; | |
} |
var $ = jQuery.noConflict(); |
document.getElementById("myBtn").addEventListener("click", function(){ | |
document.getElementById("demo").innerHTML = "Hello World"; | |
}); | |
document.getElementById("myBtn").addEventListener("click", myFunction); | |
function myFunction() { | |
document.getElementById("demo").innerHTML = "Hello World"; | |
} |
$('.selector').datepicker({ | |
onSelect: function(dateText, inst) { | |
console.log(dateText + " has been selected!"); | |
} | |
}); |
$( ".selector" ).datepicker( "destroy" ); | |
$( ".selector" ).datepicker( { | |
// ... new instant | |
dateFormat: "dd/mm/yy", | |
minDate: "+1" | |
}); |
dig website.com @8.8.8.8 MX
use command line to make images smalled dimensions https://guides.wp-bullet.com/batch-resize-images-using-linux-command-line-and-imagemagick/ https://www.howtogeek.com/109369/how-to-quickly-resize-convert-modify-images-from-the-linux-terminal/
| With border | With box-shadow | | border: 1px solid red | box-shadow: inset 0 0 0 -1px red | | border-top: 1px solid red | box-shadow: inset 0 1px 0 0 red | | border-right: 1px solid red | box-shadow: inset -1px 0 0 red | | border-bottom: 1px solid red | box-shadow: inset 0 -1px 0 0 red | | border-left: 1px solid red | box-shadow: inset 1px 0 0 red |