Skip to content

Instantly share code, notes, and snippets.

View kora731's full-sized avatar
🎯
Focusing

Surong Ruan kora731

🎯
Focusing
View GitHub Profile
* {
background: #000 !important;
color: #0f0 !important;
outline: solid #f00 1px !important;
}
@kora731
kora731 / index.html
Created April 9, 2016 20:44 — forked from marcneuwirth/index.html
D3 Globe
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<svg id="defs">
<defs>
<linearGradient id="gradBlue" x1="0%" y1="0%" x2="100%" y2="0%">
@kora731
kora731 / designer.html
Last active August 29, 2015 14:21
designer
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../google-map/google-map-search.html">
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
% A program to demonstrate instability of timestepping methods
% when the timestep is inappropriately choosen.
%Differential equation: y'(t)=-y(t) y(t_0)=y_0
%Initial Condition, y(t_0)=1 where t_0=0
clear all; clc; clf;
%Grid
h=.1;
tmax=4;