8:00 – 4:30 SR
- Deployed the login fix
- And for some reason, my machine could only connect to Google when I came in. nslookup was timing out on dns1.wcc. Poking around seems to have fixed it.
- Helping Dong with the charting code.
8:00 – 4:30 SR
8:00 – 4:00 SR
8:00 – 2:00 SR
8:00 – 4:00 SR
8:00 – 2:00 SR
8:00 – 4:00 SR
svnadmin dump /path/to/repository > repository-name.dmp
svnadmin create repository-name [--fs-type fsfs] <-optional?
svnadmin load repository-name --force-uuid < repository-name.dmp
var months:any = this.dataProvider.mappings[0]; var charts:WglCharts.ConfiguredChart = new WglCharts.ConfiguredChart(rb, this.dataProvider, this.dataFormat); charts.setChartGrid(cg); charts.add2DCharts(months);
7:00 – 3:00 SR
8:00 – 12:00 SR
8:00 – 5:00 SR
export class ATSBase {
constructor() {
/****/
this["timeoutFunction"] = () => {
var proto:Object = this["__proto__"];
proto["timeoutFunction"].apply(this, arguments);
};
this["myFunction"] = () => {
var proto:Object = this["__proto__"];
proto["myFunction"].apply(this, arguments);
};
console.log("done");
/****/
}
}
class Base {
constructor() {
for (var p in this)
if (!Object.prototype.hasOwnProperty.call(this, p) && typeof this[p] == 'function') {
var method = this[p];
this[p] = () => { method.apply(this, arguments); };
// (make a prototype method bound to the instance)
}
}
}
8:30 – 4:00 SR
8:00 – 4:00 SR
8:00 – 4:00 SR
8:00 – 4:30SR
8:00 – 3:00 SR
8:00 – 5:30 SR
You must be logged in to post a comment.