This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
Setlocal EnableDelayedExpansion | |
title Minecraft Windows 10 Edition worlderror.IO Debugger | |
echo Minecraft Windows 10 Edition worlderror.IO debugger | |
echo. | |
echo. | |
echo Contact Extreme_Heat on http://minecraftforum.net/ or Extreme on irc.esper.net for help with this file |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_meta": { | |
"created_on": "2015-06-01 01:17:28", | |
"errors": [ | |
], | |
"time_elapsed": 58381.66499996185, | |
"created_by": "NVIDIA Driver Grabber.py v1.0" | |
}, | |
"product_types": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import requests | |
import json | |
import time | |
import re | |
import base64 | |
class NvidiaDriverGrabber(): | |
def __init__(self, lookup_url, process_url, product_types, locale, language, throttle = 5): | |
self.LOOKUP_URL = lookup_url |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"driverSelector": { | |
"platform": [ | |
{ | |
"productfamily": [ | |
{ | |
"product": { | |
"version": { | |
"NA": { | |
"_name": "N/A", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Configuration | |
# The log path that Minecraft's native log uses. Update this if it changes. | |
$LogPath = "\Minecraft\nativelog.txt"; | |
$VERSION = "1.1"; | |
# Set the absolute log path based on OS arc | |
if ([System.IntPtr]::Size -eq 4) { | |
$AbsoluteLogPath = $env:ProgramFiles + $LogPath; | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// insert paid usernames here (duh) | |
$name = ["jeb_", "notch"]; | |
$game = "minecraft"; | |
$api = "https://api.mojang.com/profiles/"; | |
// request options | |
$opts = stream_context_create(['http'=>['method'=>'POST','header'=>'Content-type: application/json','content'=>json_encode($name)]]); | |
$request = json_decode(file_get_contents($api.$game, false, $opts), true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getProfile($name) { | |
$uri = "https://api.mojang.com/profiles/minecraft"; | |
$request = Requests::post($uri, ["Content-Type" => "application/json", "User-Agent" => "ShockyIRC/1.0"], json_encode($name)); | |
try { | |
$json = json_decode($request->body, true); | |
$id = @$json[0]["id"]; | |
return $id?$id:"No profile."; | |
} catch (Exception $e) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Bukkit Build RSS Generator | |
* | |
* @author JWhy <[email protected]> | |
* @version 0.3 | |
* @license https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License | |
*/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html class="no-js"><head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/superhero/bootstrap.min.css"> | |
<style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'---------------------------------------------------- | |
' Serial Checker v1 by Extreme. ' | |
'---------------------------------------------------- | |
' Will obtain the Serial number for specified ' | |
' machine. ' | |
'---------------------------------------------------- | |
' No error reporing on VBS.. | |
On Error Resume Next |