Skip to content

Instantly share code, notes, and snippets.

View marydn's full-sized avatar
🦙
Oh no, my GoTo!

Mary De Nóbrega marydn

🦙
Oh no, my GoTo!
View GitHub Profile
@marydn
marydn / utils.js
Created September 15, 2019 21:06
Remove accents/diacritics in a string in JavaScript
const str = "Crème Brulée"
str.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
// > "Creme Brulee"
@marydn
marydn / AnotherComponent.vue
Created October 2, 2019 12:05
Simple VueJS component that beautifies JSON objects
<template>
<code-printer>
{{ json }}
</code-printer>
</template>
<script>
import CodePrinter from './CodePrinter';
export default {
@marydn
marydn / wget.sh
Created November 29, 2020 23:43
Download a whole website including assets using wget
#!/bin/sh
wget \
--recursive \
--page-requisites \
--adjust-extension \
--span-hosts \
--convert-links \
--domains gurucall.io \
--no-parent \