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
| + ---- Minecraft Crash Report ---- | |
| + // My bad. | |
| + | |
| + Time: 17.05.16 18:01 | |
| + Description: Rendering item | |
| + | |
| + java.lang.NoSuchMethodError: blusunrize.immersiveengineering.client.IENixieFontRender.bindTexture(Lnet/minecraft/util/ResourceLocation;)V | |
| + at blusunrize.immersiveengineering.client.IENixieFontRender.func_78266_a(IENixieFontRender.java:77) | |
| + at net.minecraft.client.gui.FontRenderer.func_78278_a(FontRenderer.java:244) | |
| + at net.minecraft.client.gui.FontRenderer.func_78255_a(FontRenderer.java:489) |
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
| #!/bin/sh | |
| # Unn4m3d's environment install script | |
| # Run with sudo | |
| apt-add-repository ppa:webupd8team/java -y | |
| #apt-add-repository ppa:keks9n/monodevelop-latest -y | |
| apt-add-repository ppa:webupd8team/atom -y | |
| apt-add-repository ppa:brightbox/ruby-ng -y | |
| apt-add-repository ppa:mmk2410/intellij-idea-community -y | |
| apt-add-repository ppa:atareao/telegram -y |
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
| #!/bin/sh | |
| # This script prints count of breaking changes in https://github.com/crystal-lang/crystal (according to changelog) | |
| wget -O - https://github.com/crystal-lang/crystal/raw/master/CHANGELOG.md 2>/dev/null |\ | |
| grep -c "(breaking change)" |
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
| #if __cplusplus < 201103L && !defined(nullptr) | |
| #define nullptr NULL | |
| #endif |
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
| class SEditable | |
| { | |
| public: | |
| bool isActive() | |
| { | |
| return active; | |
| } | |
| bool setActive(bool b) | |
| { |
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
| [20:35:21] [Thread-8/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [20:35:21] [Thread-8/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [20:35:21] [Thread-8/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [20:35:21] [Thread-8/INFO]: Forge Mod Loader version 11.14.4.1563 for Minecraft 1.8 loading | |
| [20:35:21] [Thread-8/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_101, running on Linux:amd64:3.19.0-32-generic, installed at /usr/lib/jvm/java-8-oracle/jre | |
| [20:35:21] [Thread-8/INFO]: Loading tweaker com.mumfrey.liteloader.launch.LiteLoaderTweaker from liteloader-1.8-DEV-b53.jar | |
| [20:35:21] [Thread-8/INFO]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine_1.8.0_HD_U_H2.jar | |
| [20:35:21] [Thread-8/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker | |
| [20:35:21] [Thread-8/INFO]: Loading tweak class name com.mumfrey.liteloader.launch.LiteLoaderT |
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
| #!/usr/bin/ruby | |
| #Bitmap generator for Arduino | |
| #Usage : genbmp.rb image w h f | |
| require 'rmagick' | |
| include Magick | |
| class String | |
| def pad(s,c) | |
| st = self.clone | |
| while st.length < s |
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
| require 'webrick' | |
| require 'json' | |
| class Object | |
| def transform(&b) | |
| yield self | |
| end | |
| end | |
| def disk_usage |
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
| Completed 500 Internal Server Error in 400ms (ActiveRecord: 4.8ms) | |
| ActionView::Template::Error (undefined method `to_a' for #<Thredded::TopicPostsPageView:0x007feb18573068>): | |
| 8: id: dom_id(topic), | |
| 9: class: ['thredded--main-section', 'thredded--topic', *topic_css_classes(topic)] do %> | |
| 10: <%= render 'thredded/topics/header', topic: topic %> | |
| 11: <%= render partial: 'thredded/posts/post', collection: @posts, cached: true %> | |
| 12: <%= paginate @posts %> |
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
| require "xml" | |
| module Nya | |
| module Serializable | |
| alias Node = XML::Node | |
| alias Builder = XML::Builder | |
| @@children = Hash(String, Proc(Node, Serializable)).new | |
| macro serializable(name, type) | |
| %xpath = "property[@name='{{name}}']" |
OlderNewer