This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///---User configurable stuff---/// | |
///---Modifiers---/// | |
#define MOD XCB_MOD_MASK_4 /* Super/Windows key or check xmodmap(1) with -pm*/ | |
///--Speed---/// | |
/* Move this many pixels when moving or resizing with keyboard unless the window has hints saying otherwise. | |
*0)move step slow 1)move step fast | |
*2)mouse slow 3)mouse fast */ | |
static const uint16_t movements[] = {20,40,15,400}; | |
/* resize by line like in mcwm -- jmbi */ | |
static const bool resize_by_line = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<scheme name="RainbowDrops" version="142" parent_scheme="Darcula"> | |
<option name="FONT_SCALE" value="1.0" /> | |
<metaInfo> | |
<property name="modified">2017-06-24T02:20:15</property> | |
<property name="rainbow JAVA">false</property> | |
</metaInfo> | |
<option name="EDITOR_FONT_SIZE" value="16" /> | |
<option name="CONSOLE_FONT_NAME" value="Iosevka" /> | |
<option name="CONSOLE_FONT_SIZE" value="14" /> | |
<option name="EDITOR_FONT_NAME" value="Iosevka" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.github.nerd.discordemoji.CustomEmoji; | |
import io.github.nerd.discordemoji.EmojiRegistry; | |
import sx.blah.discord.api.IDiscordClient; | |
import sx.blah.discord.api.events.IListener; | |
import sx.blah.discord.handle.impl.events.guild.GuildCreateEvent; | |
import sx.blah.discord.handle.impl.events.guild.GuildEmojisUpdateEvent; | |
import sx.blah.discord.handle.obj.IEmoji; | |
import sx.blah.discord.handle.obj.IGuild; | |
import sx.blah.discord.modules.IModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
import java.util.Base64; | |
import java.util.concurrent.CopyOnWriteArrayList; | |
public class HelloWorld |