Paste not found.
Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: server
Submitted by PasteCC on December 2, 2014

Section 1 (Lua)

dir = disk.getMountPath("left") .. "/"
usersDir = dir .. "users"
passDir = dir .. "passwords"
function newUser(name, password)
  openWrite()
  for user in io.lines(usersDir) do
    users:write(user)
  end
  
  for password in io.lines(passDir) do
    pass:write(password)
  end 
  users:write(name .. "\n")
  pass:write(password .. "\n")
  exit()
end

function openWrite()
  users = io.open(usersDir, "w")
  pass = io.open(passDir, "w")
end

function save()
  users:flush()
  pass:flush()
end

function close()
  users:close()
  pass:close()
end

function exit()
  save()
  close()
end
newUser("Strikinwolf", "meow")
newUser("trajing", "meow")
newUser("Strikingwolf", "hello")
for name in io.lines(usersDir) do
  print(name)
end
for password in io.lines(passDir) do
  print(password)
end