Jump to content


Justy's Content

There have been 6 items by Justy (Search limited from 10-February 22)


By content type

See this member's

Sort by                Order  

#268989 Krist - Minable currency that works across servers (paste updated)

Posted by Justy on 13 August 2017 - 06:24 PM in Programs

View PostTheRockettek, on 10 August 2017 - 05:58 PM, said:

Noone said you had to store it all in a file :^)
So you have 65,150,009,139,058,228,497,766,923,716,720,797,655 TB of RAM?



#268856 CCJam 2017 is here!

Posted by Justy on 07 August 2017 - 11:10 PM in General

Count me in :)
https://github.com/justync7/CCJam-2017



#266745 Making a program for you?

Posted by Justy on 01 May 2017 - 03:26 AM in General

View PostBoom, on 22 April 2017 - 12:07 PM, said:

Name: Motorola 68k emulator
My name: the sound when you ignite a block of TNT
Sort of Program: Emulator
Advanced Computer: required?
Features:
  • Emulates a Motorola 68060 CPU at an acceptable speed
  • A console where you can type in opcodes or 68k ASM
  • Fully functional MMU and FPU
  • A basic terminal with some basic graphics capabilities
  • 64k of addressable RAM
Good luck.
TNT makes a "Boom" sound when it explodes, not when you ignite it. :huh:



#266744 rednoot - A global rednet/modem bridge.

Posted by Justy on 30 April 2017 - 08:59 PM in Programs

View PostSquidDev, on 30 April 2017 - 08:15 PM, said:

Looks cool. Glad to see someone putting CCTweaks to good use. One thing you should be able to do is wait for the socket_connected event instead of polling to check it's open:

local timeout = os.startTimer(10)
while true do
  local ev, id = os.pullEvent()
  if ev == "socket_connected" and id == ws.id() then
	break
  elseif ev == "timer" and id == timeout then
	printError("Timed out")
	return
  end
end
Note, I haven't actually tested that.
Thanks for that! I have simplified the code significantly now.



#266741 rednoot - A global rednet/modem bridge.

Posted by Justy on 30 April 2017 - 08:10 PM in Programs

rednoot is a bridge between rednet or modem and a websocket server, this allows for cross server and cross emulator connections.
Requirements:
- Latest CCEmuX or CCTweaks or CCTweaks Patched CCEmuRedux
- Sockets enabled in the CCTweaks config.

Download:
wget https://raw.githubusercontent.com/justync7/rednoot/master/client.lua rednoot

Simple usage:
rednoot

Advanced usage (parentheses are defaults):
rednoot [endpoint (ws://rednoot.krist.club)] [mountPoint (front)]

It's as simple as connecting on your desired computers, and the rednet and modem connections on the "front" will be bridged magically over the internet!

Additional info:
More information about this, such as hosting your own bridge and the specifications on how this is implemented can be found on the repo: https://github.com/justync7/rednoot

DISCLAIMER:
This is not perfect, and you might run into bugs at times. Simply report them to me and I will attempt to solve them.



#262668 Delayed Callback

Posted by Justy on 13 December 2016 - 01:22 AM in APIs and Utilities

Huh, Seems like you were a bit late to the party.
Good job, nonetheless.