Skip to content

Instantly share code, notes, and snippets.

View PreciseAsteroid's full-sized avatar

Amir Baruch PreciseAsteroid

  • Berlin, DE
View GitHub Profile
@brucemcpherson
brucemcpherson / gistThat_.vba
Last active July 4, 2024 04:39
Bootstrap for gistThat_ code distributor for VBA
'IMPORTANT - CHANGE gtExampleLoad() to include gtDoit() for each Gist you want to load
' bootstrap code to update VBA modules from gists
' all code is in this module - so no classes etc.
' latebinding is used to avoid need for any references
' can be found at https://gist.github.com/3403537
Option Explicit
' v2.04 - 3403537
' if you are using your own gists - change this
Const gistOwner = "brucemcpherson"
@brucemcpherson
brucemcpherson / restlibraryexamples.vba
Last active December 16, 2015 10:19
rest library examples to test excel rest library - ramblings.mcpher.com
Option Explicit
'for more about this
' http://ramblings.mcpher.com/Home/excelquirks/classeslink/data-manipulation-classes
'to contact me
' http://groups.google.com/group/excel-ramblings
'reuse of code
' http://ramblings.mcpher.com/Home/excelquirks/codeuse
' google rules and api documentation
import React from "react";
import { render } from "react-dom";
const ParentComponent = React.createClass({
getDefaultProps: function() {
console.log("ParentComponent - getDefaultProps");
},
getInitialState: function() {
console.log("ParentComponent - getInitialState");
return { text: "" };