Based on a dribbble by Giovanni XU
Forked from Matt's Pen DialPad.
A Pen by Alejandro Suarez on CodePen.
var Excel = require('exceljs'); | |
var workbook = new Excel.Workbook(); | |
workbook.xlsx.readFile('../../storage/cust_88ae31d4-47c5-4f70-980e-7b473ba20ef9/xls.xls') | |
.then(function() { | |
var worksheet = workbook.getWorksheet('Sheet1'); | |
worksheet.eachRow({ includeEmpty: true }, function(row, rowNumber) { | |
console.log("Row " + rowNumber + " = " + JSON.stringify(row.values)); | |
}); | |
}); |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Alpine Examples</title> | |
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" | |
defer | |
></script> |
First : | |
$ touch ~/.config/fish/config.fish; nano ~/.config/fish/config.fish | |
Copy this in the file : | |
set --export ANDROID $HOME/Library/Android; | |
set --export ANDROID_HOME $ANDROID/sdk; | |
set -gx PATH $ANDROID_HOME/tools $PATH; | |
set -gx PATH $ANDROID_HOME/tools/bin $PATH; |
First, open Terminal and write: | |
cd /Users/$(whoami)/Library/Android/sdk; ls; | |
If it shown some files, you have Android SDK sucessfully installed. | |
If it shown: No such file or directory. You need to download and install Android SDK. | |
https://developer.android.com/studio/index.html?hl=pt-br | |
After... | |
Open Terminal and write: |
// this is the background code... | |
// listen for our browerAction to be clicked | |
chrome.browserAction.onClicked.addListener(function (tab) { | |
// for the current tab, inject the "inject.js" file & execute it | |
chrome.tabs.executeScript(tab.ib, { | |
file: 'inject.js' | |
}); | |
}); |
Install python 3 | |
create a virtualenv and then | |
pip install selenium | |
then install chrome driver: | |
brew tap homebrew/cask | |
brew cask install chromedriver |
#EXTINF:-1, tvg-logo="https://i.imgur.com/qexUoll.png" , TVN | |
http://mdstrm.com/live-stream-playlist/57a498c4d7b86d600e5461cb.m3u8? | |
#EXTINF:-1, tvg-logo="https://i.imgur.com/0ibbHBb.png" , CHV | |
http://mi.chv.cl/playlist/stream.m3u8?s=hd | |
#EXTINF:-1, tvg-logo="https://i.imgur.com/MZUzeab.png" , MEGA | |
http://mdstrm.com/live-stream-playlist/53d2c1a32640614e62a0e000.m3u8 | |
#EXTINF:-1, tvg-logo="https://i.imgur.com/IvyMi0N.png" , CANAL 13 |
#JSSIP with Catapult API ##Prerequisites
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8' /> | |
<title></title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<link href='https://www.mapbox.com/base/latest/base.css' rel='stylesheet' /> | |
<link href='site.css' rel='stylesheet' /> | |
</head> | |
<body> |