Skip to content

Instantly share code, notes, and snippets.

View christyanbrayan's full-sized avatar
💻
code the web

christyan brayan christyanbrayan

💻
code the web
View GitHub Profile
@diego3g
diego3g / settings.json
Last active September 20, 2025 14:55
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],
@RicardoTurco
RicardoTurco / encontrando_elementos_repetidos.py
Last active May 8, 2021 18:50
Python: Encontrando elementos repetidos (ITERANDO e LIST COMPREHENSIONS)
# a) USANDO ITERAÇÃO
t = 'google'
# a função SET() retorna apenas 1 vez cada elemento ...
tu = set(t)
# criammos uma "lista vazia"
tl = []
@omariosouto
omariosouto / ButtonLink.js
Last active May 22, 2025 13:50
Aula 01 - Códigos Extras
import SwiftUI
import WebKit
import PlaygroundSupport
struct ContentView: View {
@State var webView = WebView()
@State var url = ""
var body: some View {
VStack {