Skip to content

Instantly share code, notes, and snippets.

View gustavonobreza's full-sized avatar
🇧🇷
Studying so hard

Gustavo Alexandre Nobre Mesquita gustavonobreza

🇧🇷
Studying so hard
View GitHub Profile
@gustavonobreza
gustavonobreza / gist:4bbf4d5788f14e063e30201546bfb868
Created July 20, 2024 00:06 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@gustavonobreza
gustavonobreza / LICENSE.md
Created October 30, 2021 00:37
Open Source license templates

Apache License, Version 2.0

Copyright <YEAR> <OWNER>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0
@gustavonobreza
gustavonobreza / messagebox.go
Created October 29, 2021 15:16 — forked from NaniteFactory/messagebox.go
Win32 API MessageBox() in Golang
import (
"syscall"
"unsafe"
)
// MessageBox of Win32 API.
func MessageBox(hwnd uintptr, caption, title string, flags uint) int {
ret, _, _ := syscall.NewLazyDLL("user32.dll").NewProc("MessageBoxW").Call(
uintptr(hwnd),
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(caption))),