Skip to content

Instantly share code, notes, and snippets.

View srikant's full-sized avatar
🏠
Working from home

Dhondi Srikanth srikant

🏠
Working from home
  • Hyderabad, India.
View GitHub Profile
import * as tf from '@tensorflow/tfjs';
import '@tensorflow/tfjs-node';
const inputs = [[0, 0], [0, 1], [1, 0], [1, 1]];
const outputs = [[0], [1], [1], [0]];
const inputTensors = tf.tensor2d(inputs);
const outputTensors = tf.tensor2d(outputs);
const model = tf.sequential();
@gpessia
gpessia / Helvetica Neue stack
Created January 24, 2014 11:28
Helvetica Neue CSS font-family stack. Is there a web-safe Helvetica Neue CSS font-family stack? - See more at: http://rachaelmoore.name/posts/design/css/web-safe-helvetica-font-stack/#sthash.lt6rYYGz.dpuf
/**
* Helvetica Neue Normal (No Stretch)
*/
/* Helvetica Neue Black Font Stack */
.{font-family: "HelveticaNeueBlack", "HelveticaNeue-Black", "Helvetica Neue Black", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosBold', "Arial Black", sans-serif; font-weight:800; font-stretch:normal;}
/* Helvetica Neue Heavy Font Stack */
.{font-family: "HelveticaNeueHeavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosBold', "Arial Black", sans-serif; font-weight:700; font-stretch:normal;}