Join 2,358+ Players and socialize together

Join the Community Today

Come hang out with us on the Minecraft Addicts Forums — it's the perfect place to chat, trade cool stuff, and connect with awesome builders just like you! Let's plan epic builds, create amazing worlds together, and then show off your masterpieces to everyone! Plus, we’re all about having fun, so feel free to talk about anything under the sun—games, hobbies, favorite snacks, you name it! Can't wait for you to join and share all the Minecraft magic!

Forum Game: Control/Command V

Status
Not open for further replies.

YourMacManDan

Well-known member
Joined
Mar 8, 2011
Messages
1,218
I have seen some other forums try this and thought it might work here...

The game is control v. All you do it paste what is on your "clipboard" into the thread...
 
#invisibletable {
border-width:0px;
}
.field {
border: 1px solid #8C1717;
background: #555555;
color: #ffffff;
font-size: 1.1em;
background-color: #555555;
}
 
ava -Xms512m -Xmx1024m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "YOURnameHERE"

just a little mod experiment
 
class-dump -H SpringBoard

I was trying to get Siri to work on my iPhone 4. I Failed.
 
ServerSocket serverSocket = new ServerSocket(Client.PORT);

//Make the server continually accept file transfers
while(true){
socket = serverSocket.accept();

ObjectOutputStream out = new ObjectOutputStream(socket.getOutputStream());

ObjectInputStream in = new ObjectInputStream(socket.getInputStream());

FileOutputStream fileWrite = null;
byte [] buffer = new byte[Client.BUFFER_SIZE];

//First get file name
Object o = in.readObject();

if(o instanceof String){
// use the string as the files name
fileWrite = new FileOutputStream("downloads/" + o.toString());
}
else{
throw new Exception("something has gone terribly wrong");
}

Integer bytesRead = 0;

do {
o = in.readObject();
//Get the number of bytes in this wave
if(!(o instanceof Integer)){
throw new Exception("something has gone Very very bad");
}

bytesRead = (Integer)o;

o = in.readObject();

if(!(o instanceof byte[])){
throw new Exception("You messed up, and you did it bad!");
}

buffer = (byte[])o;

//Write data to output file.
fileWrite.write(buffer,0,bytesRead);

} while (bytesRead == Client.BUFFER_SIZE);
fileWrite.close();

in.close();
out.close();
}
 
instead of getting siri
get vlingo or dragon go
they're both free
 
this seems to be a lot of code

@Refined
What was your program designed to do? all i could get from it is you make/refrence a new file in downloads folder
 
this seems to be a lot of code

@Refined
What was your program designed to do? all i could get from it is you make/refrence a new file in downloads folder

I didnt have the entire program in my clip board thats why... Lol. It lets you drag files onto another computer running the client.

Its sort of like a personal drop box.
 
this is what i had in my clipboard when i got home from work....

function updateNavScroll() {
var pos = window.scrollY;
if (!topNavPos) {
topNavPos = 120;
}
var st = document.getElementById('floatingNavDiv');
if (st) {
if (pos < topNavPos && updatedNavPos != 'absolute') {
st.style.position = 'absolute';
st.style.top = topNavPos + 'px';
updatedNavPos = 'absolute';
//alert('Switched to absolute');
} else if (pos >= topNavPos && updatedNavPos != 'fixed') {
st.style.position = 'fixed';
st.style.top = '0';
updatedNavPos = 'fixed';
//alert('Switched to fixed');
}
}
}
updateNavScroll();

function clearSearchAuto() {
var elem = document.getElementById('searchList');
elem.innerHTML = '';
document.getElementById('searchDrop').style.visibility = 'hidden';
}
function navShow(k) {
navHideAll();
if (document.getElementById('searchDrop')) {
document.getElementById('searchDrop').style.visibility = 'hidden';
}
if (document.getElementById('membersLive')) {
document.getElementById('membersLive').style.visibility = 'hidden !important';
}
document.getElementById('navDiv' + k).style.visibility = 'visible';
document.getElementById('navButton' + k).className = 'navbutton on';
if(k == 'Sites') {
 
I feel awful about that suprise. Tell you what, let's give your parents a call right now!
*Phone ring* The birth parents you are trying to reach do not love you. Please hang up. *Dial tone*
Oh that's saaaad. But impressive. Maybe they worked at the phone company.
 
I didnt have the entire program in my clip board thats why... Lol. It lets you drag files onto another computer running the client.

Its sort of like a personal drop box.

is it set up a local network (via WiFi/Bluetooth) or over a remote server?
 
You just need the address of the other client and you can sync computers. Then u just drag and drop.
 
Status
Not open for further replies.
Back
Top