Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
var p1 = { | |
x: 20, | |
y: 20 | |
}; | |
var p2 = { | |
x: 40, | |
y: 40 | |
}; |
<html> | |
<body style="background: #333"> | |
<script > | |
var gui = require('nw.gui'); | |
var win = gui.Window.get(); | |
function takeSnapshot() { | |
win.capturePage(function(img) { | |
var popWindow = gui.Window.open('popup.html', | |
{width: 420, height: 300}); | |
popWindow.on('loaded', function() { |
This is the source repository for the SheetConverter Google Apps Script library.
Libary documentation is available here.
This script is incomplete, ignoring some types of formatting. (Feel free to fork and enhance it, if you wish! Broadly applicable enhancements can be merged and the library updated) There are also some known issues:
-
Add this line to
~/.profile
export PATH=$HOME/bin:$PATH
-
Create
/etc/init.d/dropbox
-
Add the contents of the file below
-
Make the script executable and add it to the system startup
sudo chmod +x /etc/init.d/dropbox
Ionic: Advanced HTML5 Hybrid Mobile App Framework. It is built with HTML5 technologies on Apache Cordova and AngularJS.
Ionic's ultimate goal is to make it easier to develop native mobile apps with HTML5, also known as Hybrid apps.
Learn Ionic. Read the Docs and join the Forum. Keep up to date with the Blog. View the Source.
Register in HockeyApp | |
-Android | |
1. cordova build --release android | |
2. keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 | |
3. jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore HelloWorld-release-unsigned.apk alias_name | |
4. zipalign -v 4 HelloWorld-release-unsigned.apk HelloWorld.apk | |
5. upload apk file to HockeyApp | |
-IOS | |
1. cordova build --release ios |
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
##Angular CLI (ng serve)
To run the standard angular-cli ng serve
on a Cloud9 box, you need to specify the cloud9 specific ports the preview runs off as well as define a live preview port. So instead of the angular-cli command of ng serve
, run the following:
ng serve --host 0.0.0.0 --port 8080 --live-reload-port 8081
The port configuration is the important part to make sure it is accessible to preview. Once running, preview the App as per usual in Cloud9 via the "Preview" button (no need to use the "Run" button).
To make things easier, you can assign that command to an alias: