Skip to content

Instantly share code, notes, and snippets.

View marcodali's full-sized avatar
🍊
Focusing

Marco Dali marcodali

🍊
Focusing
View GitHub Profile
@marcodali
marcodali / narcicista.go
Last active April 6, 2024 08:19
Código en Golang para descubrir si un numero es Narcisista como yo 😏
package main
import (
"fmt"
"os"
"math"
"strconv"
)
func isNarcissistic (n int) bool {
@marcodali
marcodali / webSocketServerCode.js
Last active November 26, 2023 23:20
Developers nicknames
// COPY&PASTE code starts here
const happyEmoticons = [
'😀', '😁', '😂', '🤣', '😃', '😄', '😅', '😆',
'😉', '😊', '😋', '😎', '😍', '😘', '😗', '😙',
'😚', '🙂', '🤗', '🤩', '😏', '😌', '😛', '😜',
'😝', '🤤', '🤑', '😲', '😳', '🤪', '🥳', '😈',
]
const happyEmoticonsLength = happyEmoticons.length
const socketMatchDevelopers = new Map()
const socketMatchFlag = new Map()