This file contains 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
gist name ? |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
/* Version: 0.1 (14/April/18) :: Free to use, no strings attached | |
Compiled online with http://www.typescriptlang.org/play/ | |
Minified online with https://jscompress.com/ | |
Online demo with source code: https://pong.stackblitz.io ( See index.js for example ) */ | |
define(["require","exports"],function(t,i){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var s=function(){function t(t,i){this.max_difficulty=7,this.screenW=0,this.screenH=0,this.displayScale=1,this.game_frame_rate=60,this.mouse_x=0,this.mouse_y=0,this.mouse_moved=!1,this.score1=0,this.score2=0,this.enemy_velocity=0,this.pedal_1_y=0,this.pedal_2_y=0,this.pedal_1_x=0,this.pedal_2_x=0,this.pedal_thikness=0,this.pedal_height=0,this.ball_radius=0,this.ball_speed=0,this.ball_speed_angle=0,this.ball_velocity_x=0,this.ball_velocity_y=0,this.ball_x=0,this.ball_y=0,this.minScreenSize=0,this.color_bg="white",this.color_primary="red",this.color_secondary="gray",this.text="https://pong.stackblitz.io",this.ctx=t,this.canvas=t.canvas,i&&(this.text=i),this |
This file contains 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
/** Declaration file generated by dts-gen */ | |
export class Group { | |
constructor(size: any); | |
activate(value: any): any; | |
clear(): void; | |
connect(target: any, method: any, weight: any): any; |
This file contains 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
# Open console -> F1 ( to open settings ) -> select 'Blackboxing' on the left side bar -> Add patterns | |
# More info: https://developer.chrome.com/devtools/docs/blackboxing | |
prototype.*\.js | |
angular.*\.js | |
jquery.*\.js | |
moment.*\.js | |
\.min\.js$ |
This file contains 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
using UnityEngine; | |
// Create a plane and a cube above that plane, attach a rigidbody to the cube & add gravity | |
// drop this script anywhere on the scene and watch the variables in realtime | |
// mess around with timeScale and see the results | |
// toggle the jump checkbox during runtime | |
public class TestTimeScale : MonoBehaviour | |
{ | |
[Space,Space,Range(0.01f, 3f)] | |
public float timeScale = 0.5f; | |
This file contains 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
// Download the DLL here: | |
// https://www.nuget.org/packages/YamlDotNet/ | |
// at "Download package ( ... KB )" | |
// browse for the lib > .Net35 folder copy paste the dll into your unity assets folder | |
// Note this script file must be located inside a folder named "Editor" | |
using System; | |
using System.Text; | |
using System.IO; |
This file contains 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
// as seen on : https://www.youtube.com/watch?v=N92w4e-hrA4 | |
// using : https://github.com/infusion/Fraction.js/blob/master/fraction.min.js | |
function makeLoop( z, c, loop_limit = 7, max_value = 1000000 ) | |
{ | |
var loop = [ z ]; | |
var calc_func = ( vz, vc ) => vz.mul( vz ).add( vc ); | |
This file contains 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
from __future__ import print_function | |
import numpy as np | |
import struct # convert from Python values and C structs | |
import tensorflow as tf | |
import re | |
import barracuda | |
from barracuda import Struct | |
from google.protobuf import descriptor | |
from google.protobuf.json_format import MessageToJson |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8"/> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> | |
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'/> | |
<meta name="viewport" content="width=device-width"/> | |
<title>PHP CDN</title> |
OlderNewer