- Hwyla (Fork Maintainer)
- Blood Magic (Maintainer)
- Soul Shards: The Old Ways (Maintainer)
- Lore Expansion (Maintainer)
- Resourceful Crops (Solo Developer)
- Harvest (Solo Developer)
- Guide-API (Solo Developer)
- LaunchGUI (Solo Developer)
🤷♂️
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
// ==UserScript== | |
// @name Crunchyroll HTML5 | |
// @namespace https://github.com/YePpHa/crunchyroll-html5 | |
// @description A fully fledged HTML5 player for Crunchyroll. | |
// @version 0.14.4 | |
// @author Jeppe Rune Mortensen <[email protected]> | |
// @match http://www.crunchyroll.com/* | |
// @match https://www.crunchyroll.com/* | |
// @source https://github.com/YePpHa/crunchyroll-html5.git | |
// @grant GM_xmlhttpRequest |
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
// Block | |
Block myBlock = new Block(Materials.ROCK); | |
GameRegistry.register(myBlock.setRegistryName("myBlock")); | |
// Block with inventory Item | |
Block myBlock = new Block(Materials.ROCK); | |
GameRegistry.register(myBlock.setRegistryName("myBlock")); | |
GameRegistry.register(new ItemBlock(myBlock).setRegistryName(myBlock.getRegistryName()); |
As I am a very bored person who likes to take on more than he should, this is a list of all the things I plan to work on over the next few weeks. I'll probably be adding more.
I'd really like to hammer out as many of the currently reported issues as I can, but there's a few features and backend changes and optimizations that I would love to make.
The format for this list is "basic description
- reason
".
- Altar accepts any instanceof BlockBeacon - #459
- Altar can accept other mod variants (looking at you, Chisel) of required blocks - #459
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
package your.package.here; | |
import net.minecraft.block.Block; | |
import net.minecraft.client.Minecraft; | |
import net.minecraft.client.renderer.ItemMeshDefinition; | |
import net.minecraft.client.renderer.entity.RenderItem; | |
import net.minecraft.client.resources.model.ModelBakery; | |
import net.minecraft.client.resources.model.ModelResourceLocation; | |
import net.minecraft.item.Item; | |
import net.minecraft.item.ItemBlock; |
- How do I get TPPI2?
- Read this
- How do I make Steel?
- What is NEI?
- What's a good early game power source?
- Survivalist generator
- What mod should I start with?
- Tinker's Construct
- How do I craft X?
- Open your inventory. Click the box at the bottom. Search the name. Click on it. Stop asking stupid questions.
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
repositories { | |
maven { | |
name = "CurseForge" | |
url = "https://minecraft.curseforge.com/api/" + project.curseforge_key | |
} | |
} | |
^^^ THIS DOES NOT GO IN BUILDSCRIPT, IT GOES ABOVE apply plugin: 'forge' ^^^ | |
Then add this to dependencies |
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
var userChoice = prompt("Do you choose rock, paper or scissors?"); | |
var computerChoice = Math.random(); | |
if (computerChoice < 0.34) { | |
computerChoice = "Rock"; | |
} else if(computerChoice <= 0.67) { | |
computerChoice = "Paper"; | |
} else { | |
computerChoice = "Scissors"; | |
} |
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
#Expects Jenkins to be running on port 8080. Obviously you can change it yourself. | |
#In /etc/default/jenkins, add "--prefix=/jenkins/" to your JENKINS_ARGS line (at the bottom). This will fix all broken links. | |
<VirtualHost *:80> | |
ServerName sub.domain.com | |
ProxyPass /jenkins/ http://localhost:8080/jenkins/ nocanon | |
ProxyPassReverse /jenkins/ http://localhost:8080/jenkins/ | |
ProxyRequests Off | |
ProxyPreserveHost On | |
<Proxy http://localhost:8080/*> |
NewerOlder