- Open the "Packages" folder
- Save the theme under the folder PlainTasks/ with the name "tasks-monokai.hidden-tmTheme"
- Open the user settings for the package PlainTasks
- Update the "color-scheme" property (see the file attached below) to match the saved filename
t3 is a template to build three.js demos without dealing with the common set up process, this project is inspired by Jeromme’s three.js boilerplate
Website: http://maurizzzio.github.io/t3/docs/ github repo: https://github.com/maurizzzio/ twitter: https://twitter.com/iMauricio
Source: http://feynmanliang.com/mathjax-integration/
Append the contents of file attached in the gist to core/server/views/default.hbs
(before the `
No need to click on an a tag to see the equation, just hover on any <a>
tag created using \eqref{label}
and that's it!
Check https://mauriciopoppe.com/notes/mathematics/calculus/derivative/ for a live demo
- index.html (the configuration I use for MathJax which enables equation numbers, see http://cdn.mathjax.org/mathjax/latest/test/sample-eqnum.html for more examples) (MathJaxV2)
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
var Interval = require('interval-arithmetic') | |
var nextafter = require('nextafter') | |
var a = Interval(3, nextafter(5, -Infinity)) | |
var b = Interval(4, 6) | |
console.log(Interval.intersection(a, b)) | |
console.log(Interval.union(a, b)) | |
console.log(Interval.difference(a, b)) | |
console.log(Interval.difference(b, a)) |
Finds the convex hull of a finite set of 3d points
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
var Remarkable = require('remarkable') | |
var md = new Remarkable() | |
console.log( | |
md.parse('# generator-babel\n\ | |
[![NPM version][npm-image]][npm-url]\n\ | |
[![Build Status][travis-image]][travis-url]\n\ | |
[![Dependency Status][depstat-image]][depstat-url]\n\ | |
> [Yeoman][yo] generator to setup [Babel][babel] effortlessly. ', {}) | |
) |
made with esnextbin
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
#include<iostream> | |
#include "project/Vector.hpp" | |
using namespace std; | |
int main () { | |
Vector a(1,2), b(2, 1); | |
a = a + b; | |
a.print(); |
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
#ifndef PROJECT_VECTOR_ | |
#define PROJECT_VECTOR_ | |
#include <string> | |
class Vector { | |
double x,y; | |
public: | |
Vector(); | |
Vector(double,double); |
OlderNewer