Skip to content

Instantly share code, notes, and snippets.

View fariasmateuss's full-sized avatar
🏠
Working from home

Mateus V. Farias fariasmateuss

🏠
Working from home
View GitHub Profile

The command line, in short…

wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://website.com/

…and the options explained

  • -k : convert links to relative
  • -K : keep an original versions of files without the conversions made by wget
  • -E : rename html files to .html (if they don’t already have an htm(l) extension)
  • -r : recursive… of course we want to make a recursive copy
  • -l 10 : the maximum level of recursion. if you have a really big website you may need to put a higher number, but 10 levels should be enough.
@fariasmateuss
fariasmateuss / firestore.service.ts
Created December 15, 2022 20:39 — forked from evlymn/firestore.service.ts
Firestore Basics, Modular Firebase 9
import { Injectable } from '@angular/core';
import { Firestore, collectionData, collection, QueryConstraint } from '@angular/fire/firestore';
import { addDoc, CollectionReference, deleteDoc, doc, getDoc, query, setDoc, updateDoc } from '@firebase/firestore';
import { enableIndexedDbPersistence } from 'firebase/firestore';
@Injectable({
providedIn: 'root'
})
export class FirestoreService {
@fariasmateuss
fariasmateuss / randomColors.ts
Created February 20, 2022 03:04
Utility to generator random colors
export function randomColor() {
const hex = ((Math.random() * 0xffffff) << 0).toString(16);
return `#${hex}`;
}
@fariasmateuss
fariasmateuss / Image.tsx
Created February 20, 2022 02:54
Next Image
import NextImage, { ImageProps } from 'next/image'
interface Props extends ImageProps {
noRounded?: boolean
}
const Image = (props: Props) => {
const isStatic = typeof props.src != `string`
return (
<div