Skip to content

Instantly share code, notes, and snippets.

View Jhyub's full-sized avatar
📚
고3

Janghyub Seo Jhyub

📚
고3
  • Seoul, Republic of Korea
  • 05:28 (UTC +09:00)
View GitHub Profile
@zekroTJA
zekroTJA / readme.md
Last active July 28, 2023 18:51
How to build an embed Builder in JDA

Required Imports

import net.dv8tion.jda.core.EmbedBuilder;
import java.awt.Color;

Build the EmbedBuilder

@joyrexus
joyrexus / README.md
Last active February 24, 2024 15:16
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@testcollab
testcollab / an_example_usage.rb
Created September 22, 2011 23:31
Editing a File via the GitHub API v3
require 'editor.rb'
ed = Editor.new('testcollab/rails-test')
if ed.update_file('README.txt', 'my message', 'my new content')
ed.set_author('Scott', 'schacon@gmail.com')
ed.update_file('README.2.txt', 'my message', 'my new content')
end