- Gecko Reflow Visualization
- css-stacking-contexts-wtf
- critical-rendering-path
- why-do-browsers-match-css-selectors-from-right-to-left
- getting-started-with-the-webkit-layout-code
- improving-css-performance-fixed-position-elements
- BlinkOn 5: Paint and Compositing Deep Dive
- a-quick-overview-of-chromes-rendering-path
- [render-blocking-css](https://developers.google.com/web/fundamentals/performance/critical-rendering-path/render-b
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
| export class AppComponent implements OnDestroy { | |
| private _onDestroy = new Subject<void>(); | |
| constructor(@Inject(DOCUMENT) document: any) { | |
| fromEvent(document, 'mousedown').pipe(takeUntil(this._onDestroy)) | |
| .subscribe(() => { /*...*/ })); | |
| fromEvent(document, 'mouseup').pipe(takeUntil(this._onDestroy)) | |
| .subscribe(() => { /*...*/ })); |
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
| package th.co.geniustree.demo; | |
| import org.junit.Test; | |
| public class OptionalTest { | |
| @Test | |
| public void no_optional() { | |
| Home home = findHomeFromSomeWhere(); | |
| //print cc. of a car in my home | |
| if (home != null) { |
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
| <profile> | |
| <id>prod</id> | |
| <properties> | |
| <spring.profiles.active>prod</spring.profiles.active> | |
| </properties> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>exec-maven-plugin</artifactId> |
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
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.3</version> | |
| <configuration> | |
| <compilerId>javac-with-errorprone</compilerId> | |
| <forceJavacCompilerUse>true</forceJavacCompilerUse> | |
| <!-- maven-compiler-plugin defaults to targeting Java 5, but our javac |
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
Show hidden characters
| "angularCompilerOptions": { | |
| "fullTemplateTypeCheck": true, | |
| "preserveWhiteSpace": false | |
| } |
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
| export interface QualifyOlderPerson { | |
| id?: number; | |
| pid?: string; | |
| firstName?: string; | |
| lastName?: string; | |
| sex?: number; | |
| birthDate?: any; | |
| adl?: number; | |
| groupId?: number; | |
| createDate?: any; |
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
| <plugin> | |
| <groupId>cz.habarta.typescript-generator</groupId> | |
| <artifactId>typescript-generator-maven-plugin</artifactId> | |
| <version>1.29.366</version> | |
| <executions> | |
| <execution> | |
| <id>generate</id> | |
| <goals> | |
| <goal>generate</goal> | |
| </goals> |
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
| http://sha256timestamp.ws.symantec.com/sha256/timestamp | |
| http://timestamp.globalsign.com/scripts/timstamp.dll | |
| https://timestamp.geotrust.com/tsa | |
| http://timestamp.verisign.com/scripts/timstamp.dll | |
| http://timestamp.comodoca.com/rfc3161 | |
| http://timestamp.wosign.com | |
| http://tsa.startssl.com/rfc3161 | |
| http://time.certum.pl | |
| http://timestamp.digicert.com | |
| https://freetsa.org |
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
| HTMLElement = { | |
| type:’text’, | |
| value:’Pramoth’, | |
| className::’myclass’ | |
| } |