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| The FUGPL License | |
| =================== | |
| Permission is hereby granted, free of charge, to any person obtaining | |
| a copy of this software and associated documentation files (the | |
| "Software"), to deal in the Software with only one restriction. No part of | |
| it may be included in software projects that are solely distributed under | |
| strong copyleft restricted licenses. This license is *NOT* GPL compatible, | |
| and that is it's only restriction. | |
| This is free and unencumbered software released into the public domain. | |
| Anyone is free to copy, modify, publish, use, compile, sell, or | |
| distribute this software, either in source code form or as a compiled | |
| binary, for any purpose, commercial or non-commercial, and by any | |
| means. | |
| In jurisdictions that recognize copyright laws, the author or authors | |
| of this software dedicate any and all copyright interest in the | |
| software to the public domain. We make this dedication for the benefit |
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 8000THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| 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 |
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!)
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 |
| 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 | |
| } |
| // | |
| // 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); |