Skip to content

Instantly share code, notes, and snippets.

View dariusz21p's full-sized avatar

Dariusz Panasiuk dariusz21p

View GitHub Profile
@takeit
takeit / INSTALL.md
Last active March 23, 2024 19:03
Write to NTFS on macOS Sierra (osxfuse + ntfs-3g)
  1. Install osxfuse:
brew cask install osxfuse
  1. Reboot your Mac.

  2. Install ntfs-3g:

@Dav1dde
Dav1dde / bridge.lua
Created December 15, 2012 20:07
This is a program for ComputerCraft, it tells the turtle to build a one wide bridge
function refuel()
local fueled = false
for i=12,16 do
turtle.select(i)
fueled = turtle.refuel()
end
return fueled
end