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
import SwiftUI
import WebKit
import PlaygroundSupport
struct ContentView: View {
@State var webView = WebView()
@State var url = ""
var body: some View {
VStack {
@omariosouto
omariosouto / ButtonLink.js
Last active April 9, 2024 17:17
Aula 01 - Códigos Extras
@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 = []
@diego3g
diego3g / settings.json
Last active May 23, 2024 03:14
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [80, 120],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
@ashygee
ashygee / Cat-Noone-Accessibility.md
Last active May 9, 2022 15:03
Creative South 2019 Notes

Creative South 2019

Cat Noone - Accessibility

Accessibility and Inclusivity is a big topic. Biggest problem is that people are scared to reach out and ask questions.

Conversation around heavy topics needs to be had but it’s hard to do on the internet, needs to be done face to face.

We have a responsibility as a community to hold each other accountable, and push our benchmark for world class design higher.

# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
export ANDROID_HOME=~/Android/Sdk
export PATH="$PATH:$ANDROID_HOME/tools"
export PATH="$PATH:$ANDROID_HOME/platform-tools"
# Path to your oh-my-zsh installation.
export ZSH="/Users/diegofernandes/.oh-my-zsh"
export PATH="$PATH:/usr/local/bin"
@bmaupin
bmaupin / free-database-hosting.md
Last active May 22, 2024 21:46
Free database hosting
@mattmc3
mattmc3 / commit-emojis.md
Last active January 11, 2020 15:35
Commit message emojis

Aligning images

This is a guide for aligning images.

See the full Advanced Markdown doc for more tips and tricks

left alignment

@kossoy
kossoy / bashrc.sh
Last active October 22, 2023 12:14
Elementary OS default .bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# We use preexec and precmd hook functions for Bash
# If you have anything that's using the Debug Trap or PROMPT_COMMAND
# change it to use preexec or precmd
# See also https://github.com/rcaloras/bash-preexec
# If not running interactively, don't do anything
case $- in