Skip to content

Instantly share code, notes, and snippets.

View mbejda's full-sized avatar
🎯
Focusing

Milos Bejda mbejda

🎯
Focusing
View GitHub Profile
@mbejda
mbejda / 1514834785.html
Created January 1, 2018 19:26
Created with Copy to Gist
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1   {color: blue;}
p    {color: red;}
</style>
</head>
<body>
@mbejda
mbejda / 1513653640.js
Created December 19, 2017 03:20
Created with Copy to Gist
var foo = function(){
console.log("hello world");
}
@mbejda
mbejda / 1513653095.js
Created December 19, 2017 03:11
Created with Copy to Gist
var foo = function(){
console.log("hello world");
}
@mbejda
mbejda / 1513652863.txt
Created December 19, 2017 03:07
Created with Copy to Gist
var foo = function(){
console.log("hello world");
}
@mbejda
mbejda / 1513652771.js
Created December 19, 2017 03:06
Created with Copy to Gist
var foo = function(){
console.log("hello world");
}
@mbejda
mbejda / 1513652643.txt
Created December 19, 2017 03:04
Created with Copy to Gist
var foo = function(){
console.log("hello world");
}
@mbejda
mbejda / 1513649804.js
Created December 19, 2017 02:16
Created with Copy 2 Gist
const exp = require('plotlychartexport');
exports.handler = (event, context, callback) => {
/// define plot.ly data properties
let trace1 = {
x: [1, 2, 3, 4],
y: [10, 15, 13, 17],
type: 'scatter'
};
let trace2 = {
@mbejda
mbejda / 1513610341.txt
Created December 18, 2017 15:19
Created with Copy 2 Gist
@Directive({
selector: '[sampleDirective]'
})
export class SampleDirective {
private canvasComponent:ComponentRef<CanvasComponent>;
constructor(
) {
@mbejda
mbejda / 1513602350.[object Object]
Created December 18, 2017 13:05
Created with Copy to Gist
@Directive({
selector: '[sampleDirective]'
})
export class SampleDirective {
private canvasComponent:ComponentRef<CanvasComponent>;
constructor(
) {
@mbejda
mbejda / 1513602257.html
Created December 18, 2017 13:04
Created with Copy to Gist
<!DOCTYPE html>
<html>
<body>
<h2 title="I'm a header">The title attribute</h2>
<p title="I'm a tooltip">
Mouse over this paragraph, to display the title attribute as a tooltip.
</p>