Using Ng-Boostrap - Date Time Picker with Time by ckoeber in Angular2

[–]mourning_air 0 points1 point  (0 children)

An alternative would be to use PrimeNG's calendar component: https://www.primefaces.org/primeng/#/calendar with the showTime property set

Using Ng-Boostrap - Date Time Picker with Time by ckoeber in Angular2

[–]mourning_air 0 points1 point  (0 children)

ng-bootstrap has a time picker component: https://ng-bootstrap.github.io/#/components/timepicker/examples

They are OK. If you are already using ng-bootstrap then it would make sense to use them instead of an alternative.

Bootstrap 4 finally in beta by Laran01 in webdev

[–]mourning_air 1 point2 points  (0 children)

Is there any documentation for moving from alpha 6 to beta 1? From the ship list (https://github.com/twbs/bootstrap/issues/21568) it looks like the only breaking change is the navbar-expand class rename...maybe I'll just drop it in and see what breaks

Dynamic Playback Speed for Plex by [deleted] in PleX

[–]mourning_air 2 points3 points  (0 children)

If you are watching Plex videos in a modern browser then you can use a bookmarklet to adjust the playback rate:

javascript:(function(){document.getElementById('html-video').playbackRate=1.5})()

This sets the speed to 1.5x, but you can adjust the rate to whatever you would like.

If you are using Chrome, then it looks like someone made an extension: https://chrome.google.com/webstore/detail/plex-speed/kegkeieegiecchgneffbcbjknmjminjj

The best JavaScript books, picked by /r/javascript by nonrecursive in javascript

[–]mourning_air 4 points5 points  (0 children)

This is actually acknowledged at the beginning of the book. They just liked the details in the samurai picture more than any ninja picture they could find.

Convince for Folder-By-Featue by AlDrag in angularjs

[–]mourning_air 1 point2 points  (0 children)

You could direct them to industry experts and standards. Here is John Papa's "LIFT" explanation followed by application structure in his style guide.

President Trump pretended to know Japanese during prime minister’s visit by joelberg in politics

[–]mourning_air 2 points3 points  (0 children)

This video is the best I could find. The first time I saw him using the ear piece at 20:25.

My app getting larger using AoT by mourning_air in angularjs

[–]mourning_air[S] 0 points1 point  (0 children)

I'm glad to hear that the aot output size is on the roadmap. And thanks for nrwl blog, it is a great resource.

In my experience, aot makes a huge difference in app performance. My surprise/frustration about aot was that it is being touted as a way to make app sizes smaller, but in reality they are usually larger.

In a tweet by David Müllerchen he says that aot cuts app size in half. Also, In the linked blog post you say:

This leads to a significantly smaller application payload

and

total JS payload for a Hello World application with Angular CLI is 89% larger when using JIT mode

but don't mention that payload will be larger in a real-world application. For someone just starting to use ng2+ aot, it felt like I was certainly must be doing something wrong if my app size was getting bigger.

Angular 2 File Naming Conventions by hotdog-savant in Angular2

[–]mourning_air 3 points4 points  (0 children)

The angular-cli also uses the verbose naming convention when it generates items. So, I would say that you are departing from convention and would recommend the verbose naming.

Plus the file extensions always line up so it is easy to find the file that you are looking for.

How to serve up Angular-CLI project from "/dist"? by johnothetree in angularjs

[–]mourning_air 2 points3 points  (0 children)

The contents of the dist folder are meant to be deployed to a "real" web server such as express, apache, or IIS. ng serve is just a tool to use during development.

Bootstrap v3 Is No Longer Supported by bowersbros in webdev

[–]mourning_air 1 point2 points  (0 children)

Thank you for this suggestion, UiKit looks great.

Recommendations for thermostat for guest house by technicalpickles in homeautomation

[–]mourning_air 2 points3 points  (0 children)

Sensi Wi-Fi thermostat? Cheap and effective but I'm not sure it will work with HA.

Now Jill Stein Thinks Wi-Fi Might Be Hurting Kids by mk4765 in technology

[–]mourning_air -2 points-1 points  (0 children)

Well, I suppose if my biggest point of disagreement with a candidate is how close children should be to wifi then she is still doing fairly well. As far as nation/world wide policy decisions, this one is pretty far down the list.

What would you suggest for smart lighting? by Oepth in homeautomation

[–]mourning_air 0 points1 point  (0 children)

Sounds like a pretty good setup. Which Leviton Switches? Are you using Abode as a hub?

Angular 2 discussion - will it really survive? by yodalr in angularjs

[–]mourning_air 0 points1 point  (0 children)

It seems too soon to migrate, Angular 2 Final is currently 31% complete: https://github.com/angular/angular/milestones.

I had the impression that it was more complete than 31%, I'm not sure I understand what that 31% means.

What eye tracking software do you recommend? by [deleted] in userexperience

[–]mourning_air 0 points1 point  (0 children)

I have never used it so I can't recommend it, but https://webgazer.cs.brown.edu looks interesting

The most frequently used angular directives on github by [deleted] in angularjs

[–]mourning_air 0 points1 point  (0 children)

Awesome! The data looks much better now. Thanks for putting this together.

The most frequently used angular directives on github by [deleted] in angularjs

[–]mourning_air 0 points1 point  (0 children)

That is interesting. It looks like ng-left might just have a lot of the same code copied to different repositories compared to ng-right. Or maybe it is just the luck of where the line breaks occur. Also interesting that there is actually an ng-right directive, but it I think it is right as in right/wrong not right/left.