This list has moved!
See https://github.com/comp500/fabric-serverside-mods for the latest mod list!
See https://github.com/comp500/fabric-serverside-mods for the latest mod list!
log-queries | |
log-facility=/var/log/dnsmasq.log | |
no-resolv | |
server=8.8.4.4 | |
server=8.8.8.8 | |
address=/router/10.1.1.1 | |
address=/server/10.1.1.2 |
Say you wanted to emit an explosion particle whenever your block is destroyed. Emitting particles requires access to the ParticleManager
, which only exists on the MinecraftClient
instance. Let's try doing that:
public class MyBlock extends Block {
@Override
public void onBlockRemoved(BlockState before, World world, BlockPos pos, BlockState after, boolean bool) {
# Install dependencies
sudo yum install -y java-1.8.0-openjdk screen
# Create a new unprivileged user for minecraft
useradd -r -m -d /opt/minecraft minecraft
# Create the directory that will house our minecraft instances
sudo su --shell /bin/bash minecraft
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
import android.annotation.TargetApi; | |
import android.app.AlertDialog; | |
import android.content.Context; | |
import android.content.DialogInterface; | |
import android.content.res.Resources; | |
import android.graphics.Canvas; | |
import android.media.AudioManager; | |
import android.media.MediaFormat; | |
import android.media.MediaPlayer; | |
import android.net.Uri; |
String getBaseUrl(HttpServletRequest request) { | |
String baseUrl = request.getRequestURL().substring(0, request.getRequestURL().length() - request.getRequestURI().length()) + request.getContextPath(); | |
return baseUrl; | |
} |
using System; | |
using UnityEngine; | |
using UnityEditor; | |
using SyntaxTree.VisualStudio.Unity.Bridge; | |
[InitializeOnLoad] | |
public class ReferenceRemovalProjectHook | |
{ |
<?php | |
namespace config; | |
const DELIM = '.'; | |
/** | |
* Loads a configuration array from a file, based on it's type. | |
* | |
* @param string $path |
I heard from GitHub Two-Factor Authentication](https://github.com/blog/1614-two-factor-authentication) nearly a couple of days ago when I was reading my RSS feed. I enabled it and couldn' push to any of my repositories anymore. Learn in this blog post how to fix it.
"Is a process involving two stages to verify the identity of an entity trying to access services in a computer or in a network". Github solves this authentication with sending an SMS to a device which wants to push to their platform.