Skip to content

Instantly share code, notes, and snippets.

@frodoslaw
frodoslaw / confluence_page_post.py
Created April 25, 2019 19:08 — forked from akiko-pusu/confluence_page_post.py
Confluenceのページをコピーして新しくページを作るサンプル
import requests
import json
import os
import textwrap
from datetime import datetime
from datetime import timedelta
import re
class ConfluencePagePost:
'''Class to post page/blog content to Confluence via REST API.'''
@joshed-io
joshed-io / chrome_catch.js
Created August 26, 2011 06:09
Interesting Chrome behavior in catch block
(function(){ with(this) {
function pow() {
var foo = "cow", bar;
try {
foo = bar;
throw "meh";
} catch (e2) {
foo = bar; //breaks in chrome with ender + jaaulde (line 2518)
//foo = eval("bar"); //amazingly this works though, and debugger ok too
/*!
* Chart.js
* http://chartjs.org/
*
* Copyright 2013 Nick Downie
* Released under the MIT license
* https://github.com/nnnick/Chart.js/blob/master/LICENSE.md
*/
//Define the global Chart Variable as a class.
@rjack
rjack / style.css
Created May 6, 2011 23:19
Chrome Extensions Packaged App
body {
font-family: Helvetica, "sans-serif"
}
//Define the global Chart Variable as a class.
window.Chart = function(context){
var chart = this;
//Easing functions adapted from Robert Penner's easing equations
//http://www.robertpenner.com/easing/
var animationOptions = {
/*!
* Chart.js
* http://chartjs.org/
*
* Copyright 2013 Nick Downie
* Released under the MIT license
* https://github.com/nnnick/Chart.js/blob/master/LICENSE.md
*/
//Define the global Chart Variable as a class.
@uBaze
uBaze / gist:6962655
Created October 13, 2013 13:57
Chart.js
//Define the global Chart Variable as a class.
var Chart = function(context, tooltipOptions){
var chart = this;
//Easing functions adapted from Robert Penner's easing equations
//http://www.robertpenner.com/easing/
var animationOptions = {
// Underscore.js 1.2.1
// (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
// Underscore is freely distributable under the MIT license.
// Portions of Underscore are inspired or borrowed from Prototype,
// Oliver Steele's Functional, and John Resig's Micro-Templating.
// For all details and documentation:
// http://documentcloud.github.com/underscore
(function() {
// self-executing function that will leak _ and its method/props into the global scope
(function() {
// access to global scope throughout function
var root = this;
var previousUnderscore = root._;
var breaker = {};
String.whiteSpace = [];
String.whiteSpace[0x0009] = true;
String.whiteSpace[0x000a] = true;
String.whiteSpace[0x000b] = true;
String.whiteSpace[0x000c] = true;
String.whiteSpace[0x000d] = true;
String.whiteSpace[0x0020] = true;
String.whiteSpace[0x0085] = true;
String.whiteSpace[0x00a0] = true;
String.whiteSpace[0x1680] = true;