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 com.tinkeracademy.projects; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import java.math.RoundingMode; | |
import java.text.DecimalFormat; | |
import java.util.Stack; | |
import javax.swing.JButton; | |
import javax.swing.JTextArea; |
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 com.tinkeracademy.projects; | |
import java.util.ArrayList; | |
public class FlipTextLookupTable { | |
public static ArrayList<String> alphabets = new ArrayList<String>(); | |
public static ArrayList<String> reverseAlphabets = new ArrayList<String>(); | |
// http://www.upsidedowntext.com/unicode |
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 com.tinkeracademy.minecraft; | |
import net.minecraft.entity.passive.EntityOcelot; | |
import net.minecraft.entity.player.EntityPlayer; | |
import net.minecraft.init.Items; | |
import net.minecraft.item.ItemStack; | |
import net.minecraft.world.World; | |
public class Cat extends EntityOcelot { |
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 com.tinkeracademy.minecraft; | |
import net.minecraft.entity.EntityLivingBase; | |
import net.minecraft.entity.ai.EntityAIBase; | |
import net.minecraft.entity.passive.EntityTameable; | |
import net.minecraft.pathfinding.PathNavigate; | |
import net.minecraft.pathfinding.PathNavigateGround; | |
import net.minecraft.util.BlockPos; | |
import net.minecraft.util.MathHelper; | |
import net.minecraft.world.World; |
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 com.tinkeracademy.minecraft; | |
import net.minecraft.client.Minecraft; | |
import net.minecraft.entity.player.EntityPlayer; | |
import net.minecraft.init.Items; | |
import net.minecraft.item.ItemStack; | |
import net.minecraftforge.event.entity.EntityEvent; | |
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; | |
public class CatEvents { |
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 com.tinkeracademy.workbook; | |
public class Worksheet03 { | |
public static void main(String[] args) { | |
String sentence = ""; | |
} | |
} |
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 com.tinkeracademy.projects; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.JButton; | |
import javax.swing.JTextArea; | |
public class FlipText implements ActionListener { |
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 com.tinkeracademy.projects; | |
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileReader; | |
import java.io.FileWriter; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.PrintWriter; |
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 com.tinkeracademy.projects; | |
import java.awt.Color; | |
import java.awt.Container; | |
import java.awt.Dimension; | |
import java.awt.Font; | |
import java.awt.GridLayout; | |
import javax.swing.BorderFactory; | |
import javax.swing.BoxLayout; |
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 com.tinkeracademy.projects; | |
public class ChatClient { | |
public static void main(String[] args) { | |
final ChatClient chatClient = new ChatClient(); | |
javax.swing.SwingUtilities.invokeLater(new Runnable() { | |
public void run() { | |
chatClient.createAndShowGUI(); | |
} |