Skip to content

Instantly share code, notes, and snippets.

View Picoquio's full-sized avatar
😀

Juan M. Goñi Picoquio

😀
  • Tenaris
  • Pilar, Buenos Aires, Argentina
  • 10:02 (UTC -03:00)
View GitHub Profile
@khalid32
khalid32 / Convert ISO Date format to dd-mm-yyyy
Created November 28, 2017 03:45
a demonstration to convert toISOString() to dd-mm-yyyy with JavaScript
new Date().toISOString().replace(/T.*/,'').split('-').reverse().join('-')
@afternoon
afternoon / rename_js_files.sh
Created February 15, 2014 18:04
Rename .js files to .ts
find app/src -name "*.js" -exec sh -c 'mv "$0" "${0%.js}.ts"' {} \;