These are a few things requested to Mojang, or the developer themselves, or we were told that they added this.
Thing done | Version | Notes |
---|---|---|
Play -> Edit -> External menu | 0.7.4 | |
Fix protocol inconsistencies MCPE-6865 | 0.9.0 |
#!/bin/sh | |
set -e | |
set -x | |
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3) | |
do | |
npm -g install "$package" | |
done |
// | |
// KHEventQueue.h | |
// | |
// Created by Kyle Howells on 04/08/2014. | |
// Copyright (c) 2014 Kyle Howells. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
typedef void (^KHEventBlock)(void); |
func cdr<L, R>(p: () -> (L,R)) -> R { | |
let (l,r) = p() | |
return r | |
} | |
func car<L, R>(p: () -> (L,R)) -> L { | |
let (l,r) = p() | |
return l | |
} |
These are a few things requested to Mojang, or the developer themselves, or we were told that they added this.
Thing done | Version | Notes |
---|---|---|
Play -> Edit -> External menu | 0.7.4 | |
Fix protocol inconsistencies MCPE-6865 | 0.9.0 |
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000