This file contains hidden or 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
| module RequireVXConfig | |
| # | |
| # -Configure options here- | |
| # | |
| # What they do: | |
| # | |
| # :make_default_load_paths | |
| # Initializes the $LOAD_PATH variable to it's default values (not the | |
| # paths that are used to require C files becauset hey will not work). | |
| # If this is done the Ruby standard library can be copy/pasted |
This file contains hidden or 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
| # TODO: extract_download_url_entries fails some times because stream_map is nil. why? | |
| # TODO: sometimes get permission denied. it seemed that the itag value got concatenated to the end of the | |
| # download url (removing it makes it work again). not sure how that is possible. | |
| require "pry" | |
| class YoutubeNew < PluginBase | |
| VIDEO_INFO_URL = "http://www.youtube.com/get_video_info?video_id=" |
This file contains hidden or 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
| module StateRemoveCommonEventsKal | |
| TAG_NAME = "srce" | |
| class IDExtractor | |
| def get_common_event_id_for_state(state_id) | |
| rpg_state = get_rpg_state(state_id) | |
| extract_common_event_id(rpg_state.note) | |
| end | |
This file contains hidden or 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
| # | |
| # KalEquipPictures 1.0 by Kal | |
| # --------------------------- | |
| # Changes the equip status window to display an item picture. | |
| # Usage: First import you pictures to the Graphics/Pictures folder. | |
| # Then in the item note box but a tag like this: <TAG_NAME filename> | |
| # Example: <image sword01.png> | |
| # | |
| module KalEquipPictures |
This file contains hidden or 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
| module BattlePositionsKal | |
| SKILL_ID = 200 | |
| ENEMY_START = 0 | |
| PARTY_START = 10 | |
| ENEMY_INC = 2 | |
| DEFAULT_SKILL_RANGE = 1 | |
| FONT_COLOR = "1ACDE8" | |
| end |
This file contains hidden or 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
| #encoding: utf-8 | |
| require 'fileutils' | |
| require 'open-uri' | |
| require 'sanitize' | |
| #require 'pry' | |
| class YotsubatoDownloader | |
| API = ARGV[1] || "http://208.109.168.116/GetAudio1.ashx?speaker=302&content=" |
This file contains hidden or 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
| package miun.se.ant; | |
| import com.dsi.ant.message.ChannelId; | |
| import com.dsi.ant.message.ChannelType; | |
| public class DefaultChannelParameters { | |
| public static final ChannelType TYPE = ChannelType.BIDIRECTIONAL_SLAVE; |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <!DOCTYPE Event [ | |
| <!ELEMENT Event (EventName, Race*)> | |
| <!ELEMENT Race (RaceNumber, RaceDistance, RaceComment?, Horse*)> | |
| <!ELEMENT EventName (#PCDATA)> | |
| <!ELEMENT RaceNumber (#PCDATA)> | |
| <!ELEMENT RaceDistance (#PCDATA)> | |
| <!ELEMENT RaceComment (#PCDATA)> | |
| <!ELEMENT Horse (HorseName, Teamster, HorseComment?)> |
This file contains hidden or 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
| execute pathogen#infect() | |
| autocmd vimenter * if !argc() | NERDTree | endif | |
| set expandtab | |
| set hidden | |
| set number | |
| set shiftwidth=2 | |
| set softtabstop=2 |
This file contains hidden or 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
| # Enable 256 color mode | |
| set -g default-terminal "screen-256color" | |
| # Disable mouse | |
| set -g mouse off | |
| # Set the prefix from C-b to C-a | |
| set -g prefix C-a | |
| unbind C-b |