Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
This file contains hidden or 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
Tested with VM running on Azure | |
sudo apt-get update | |
sudo apt-get install ubuntu-desktop | |
sudo apt-get install xrdp | |
sudo /etc/init.d/xrdp start | |
MAY NOT BE NEEDED: | |
echo gnome-session –session=Ubuntu-2d>~/.xsession |
Very simple directive that will repeat a particular element a given number of times:
<div repeat-x="5">Hello</div>
// Directive to repeat an element x number of times
angular.module('app').directive('repeatX', [function () {
return {
<div>
<greeting1 />
</div>
<div>
<greeting2 />
</div>
<div>
<greeting3 greeting-controller="greetingController3" />
</div>
<html ng-app="app" ng-cloak ng-controller="controller1">
<head>
<title ng-bind="title"></title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
</head>
<body>
<p ng-bind="title"></p>
var message = ".....";
System.IO.File.AppendAllText(System.IO.Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.LocalApplicationData), "log.txt"), string.Format("{0}\r\n", message));
Then type %localappdata%
from the Run dialog to display the folder containing log.txt. Or type %localappdata%\log.txt
private static void Log(string format, params object[] parameters)