- CRU4Q-550288
- CRU4Q-553017
- BOP: CRU4Q-552171
- CRU4Q-550807
- NY HO3: 71A9B6049EF7425DABFB17BDC1A78DFA
HyperTerm is a terminal that is built with Electron. Electron is like building apps with a baked-in browser (Chromium). So what makes HyperTerm easily unique from other terminals is the ability to load websites right inside the terminal window.
To open a website in Hyperterm, just type the URL in the command line:
const safeRequire = require('./safe-require'); | |
const umdStyleMod = safeRequire('umd-style-mod', () => require('umd-style-mod')); |
javascript:(function(){var getFontSize=function(el){return parseFloat(getComputedStyle(el,null)['font-size']);};document.addEventListener('wheel',function(e){if(!e.altKey)return;e.preventDefault();var el=e.target;var parent=el.parentElement;var size=getFontSize(el);while(parent&&size===getFontSize(parent)){el.style.fontSize='inherit';el=parent;parent=parent.parentElement;}if(e.wheelDelta>0){size+=1;}else{size-=1;}el.style.fontSize=size+'px';});}());
var lazy = function (mediaQuery, load, unload) { | |
'use strict'; | |
if (typeof mediaQuery !== 'string') return; | |
if (typeof load !== 'function') return; | |
var mql = matchMedia(mediaQuery); | |
var isLoaded = false; | |
if (mql.matches) { |
var once = function (fn) { | |
'use strict'; | |
var ret; | |
var called = false; | |
return function () { | |
if (called) { | |
return ret; | |
} |
#!/bin/sh | |
# | |
# Run JSHint validation before commit. | |
files=$(git diff --cached --name-only --diff-filter=ACMR -- *.js **/*.js) | |
pass=true | |
if [ "$files" != "" ]; then | |
for file in ${files}; do |