Skip to content

Instantly share code, notes, and snippets.

@AntumDeluge
AntumDeluge / irc.md
Created April 5, 2018 00:28 — forked from xero/irc.md
irc cheat sheet

#IRC Reference

Not intended as a guide for newbies, more like a "cheat sheet" for the somewhat experienced IRC user, especially one who wields some power over a channel.

##The Basics

  • /join #channel
    • Joins the specified channel.
  • /part #channel
    • Leaves the specified channel.
@AntumDeluge
AntumDeluge / libimobiledevice_ifuse_Ubuntu.md
Created June 6, 2017 03:13 — forked from samrocketman/libimobiledevice_ifuse_Ubuntu.md
On Ubuntu 16.04, since iOS 10 update, libimobiledevice can't connect to my iPhone. This is my attempt to document a fix.

Why this document?

I upgraded my iPhone 5s to iOS 10 and could no longer retrieve photos from it. This was unacceptable for me so I worked at achieving retrieving my photos. This document is my story (on Ubuntu 16.04).

The solution is to compile libimobiledevice and ifuse from source.

While I did my best to think of beginners when creating this guide; This guide is not for the faint of heart. If you've not compiled software before then I recommend you practicing inside of VirtualBox before attempting this on your real system. Follow this guide at your own risk because I can't make any guarantees based on unknown individual skill level.

Support

local name, count
for name in pairs(minetest.luaentities) do
if name == "mobname" then -- Replace mobname with the name of the mob
count = count + 1
end
end
if count >= mobcap then return end -- Replace mobcap with the number of mobs at a time.
@AntumDeluge
AntumDeluge / mod_debug.lua
Last active September 6, 2016 14:40 — forked from rubenwardy/mod_debug.lua
Modified version of rubenwardy's craft debugger to output to debug log: https://gist.github.com/rubenwardy/5504537
-- Written by rubenwardy, WTFPL
-- To use:
-- * Save as mod_debug.lua in builtin/game
-- * add dofile(gamepath.."mod_debug.lua") to the last line of builtin/game/init.lua
-- OR
-- * Install as a mod. Needs to be run before any other mod.
local mod = {}
mod.recipes = {}
mod.aliases = {}