Skip to content

Instantly share code, notes, and snippets.

View seraph526's full-sized avatar

Eric Zhao seraph526

View GitHub Profile
@seraph526
seraph526 / tensorflow_self_check.py
Created June 17, 2019 06:11 — forked from mrry/tensorflow_self_check.py
[DEPRECATED] TensorFlow on Windows self-check
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@seraph526
seraph526 / http.gd
Created February 19, 2016 03:02 — forked from vinod8990/http.gd
Http downloader class for Godot
#Http downloader class for Godot
#This is a simple http downloader class which can be used to download anything from an http url
#USAGE
#Create a new scene "http.xml", with a root Node and attach this script
#Then in other scripts where you want to download something
#var http = preload("res://http.xml").instance()
#http.connect("loading",self,"_ondownloading")
#http.connect("loaded",self,"_ondownloaded")
#http.get(domain,url,port,useSSL)
tool
extends Polygon2D
export(Texture) var top_left_texture = null
export(Texture) var top_center_texture = null
export(Texture) var top_right_texture = null
export(Texture) var right_center_texture = null
export(Texture) var left_center_texture = null
export(Texture) var bottom_left_texture = null
export(Texture) var bottom_center_texture = null