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
<div class="log log-community-live-reserve"> | |
<div class="log-author "> | |
<a href="http://com.nicovideo.jp/community/co1656631"><img src="http://uni.res.nimg.jp/img/x.gif" alt="" class="nicorepo-lazyimage" data-src="http://icon.nimg.jp/community/165/co1656631.jpg?1359695917"></a> | |
</div> | |
<div class="log-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
http://live.nicovideo.jp/api/getzappinglist?zroute=recent&tab=common&sort=start_time&order=desc&zpage=1 |
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
<div class="log first log-community-action-level"> | |
<div class="log-author "> | |
<a href="http://com.nicovideo.jp/community/co431736"><img src="http://uni.res.nimg.jp/img/x.gif" alt="" class="nicorepo-lazyimage" data-src="http://icon.nimg.jp/community/43/co431736.jpg?1360092229"></a> | |
</div> | |
<div class="log-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
amazon.co.jp | |
blogger.com | |
cookpad.com | |
dotcloud.com | |
egs-soft.info | |
facebook.com | |
github.com | |
hackerschool.jp | |
images.google.com | |
judge.u-aizu.ac.jp |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvgFZRndKVSuMko6idLUtI0Zf4HfBgFDl8EMdSAhjZT1UJLBz0K6pIG4xC8Yxu29NA+dYXUYSJ0Ih9Ndj2JV+fqgK5eQXeaAbpowgsMkn/Ie6TuGQRpgnpjMPCuxZAnW4/nn7sRHD5ALkTay49b2avxSD44bs7oY/cxoxyhB0sfvnol2BUzd+cniG95xVqHNMtJwNFDPOt2isCxT4NDjUm2t6kDRgh2U5Eo6RvEhj3TVsjUIOJ53NlApBfJwNslkD2AVWt95PMB4qEIQGIVjhhCR0/fHYiC0mP+jjWBIsCHf4D9yBtx2lUSdpSIxRIhHNEB5D2Ptetwpa0VRNEks4h aoisensi@aoisensi-sub |
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
public static boolean isOcelotBlockingChest(World par0World, int par1, int par2, int par3) | |
{ | |
Iterator iterator = par0World.getEntitiesWithinAABB(EntityOcelot.class, AxisAlignedBB.getAABBPool().getAABB((double)par1, (double)(par2 + 1), (double)par3, (double)(par1 + 1), (double)(par2 + 2), (double)(par3 + 1))).iterator(); | |
EntityOcelot entityocelot; | |
do | |
{ | |
if (!iterator.hasNext()) | |
{ | |
return false; |
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
int numofbits5(long bits) | |
{ | |
bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555); | |
bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333); | |
bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f); | |
bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff); | |
return (bits & 0x0000ffff) + (bits >>16 & 0x0000ffff); | |
} |
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 net.minecraft.client.renderer.entity; | |
import cpw.mods.fml.relauncher.Side; | |
import cpw.mods.fml.relauncher.SideOnly; | |
import net.minecraft.block.Block; | |
import net.minecraft.client.model.ModelBase; | |
import net.minecraft.client.model.ModelMinecart; | |
import net.minecraft.client.renderer.RenderBlocks; | |
import net.minecraft.entity.Entity; | |
import net.minecraft.entity.item.EntityMinecart; |
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
public boolean renderBlockByRenderType(Block par1Block, int par2, int par3, int par4) | |
{ | |
int l = par1Block.getRenderType(); | |
if (l == -1) | |
{ | |
return false; | |
} | |
else | |
{ |
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
for(int i = 0;i < (BlockWood.woodType.length * 4);++i) { | |
GameRegistry.registerBlock(scaffold, "mineclingr:scaffold"); | |
LanguageRegistry.addName(new ItemStack(scaffold.blockID,1,i), | |
String.format("%s Scaffold Lv%d", | |
Mineclingr.LargerHelper(BlockWood.woodType[i >> 2]), | |
(i % 4) + 1) | |
); | |
} |