/console WeatherDensity 0
/console ffxGlow 0
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
!-------------------------- | |
! ROFI Color theme | |
! ------------------------- | |
rofi.color-enabled: true | |
!rofi.color-window: argb:ee273238, #273238, argb:3a1e2529 | |
rofi.color-window: #000, #000, #000 | |
rofi.color-normal: argb:00273238, #c1c1c1, argb:3a273238, #394249, #ffffff | |
rofi.color-active: argb:00273238, #80cbc4, argb:3a273238, #394249, #80cbc4 | |
rofi.color-urgent: argb:00273238, #ff1844, argb:3a273238, #394249, #ff1844 | |
rofi.hide-scrollbar: 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
<Response> | |
<Say voice="alice">Thanks for trying our documentation. Enjoy!</Say> | |
<Play>http://demo.twilio.com/docs/classic.mp3</Play> | |
</Response> |
I hereby claim:
- I am robixxu on github.
- I am robixxu (https://keybase.io/robixxu) on keybase.
- I have a public key ASAFdDyEVKGDP59IS5HfS6C5zzBcNofpITmapBNgY5siKgo
To claim this, I am signing this object:
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
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
atom |
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
/* -*- mode: java; compile-command: "javac -classpath /usr/share/java/robocode.jar EightBot.java; robocode -battle /home/simen/.robocode/battles/eightbot-vs-crazy.battle" -*- */ | |
import robocode.*; | |
import java.util.*; | |
import java.awt.Color; | |
import static java.lang.Math.*; | |
public class EightBot extends AdvancedRobot { | |
final int TOLLERANCE = 10; |