COMING SOON...
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
try { | |
document.createElement('canvas').getContext('webgl', { powerPreference: "high-performance" }) | |
} catch(e) {} |
This file contains 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
import { Injectable, OnDestroy } from '@angular/core'; | |
import { HttpClient, HttpEventType, HttpEvent } from '@angular/common/http'; | |
import { Subject, BehaviorSubject } from 'rxjs'; | |
import { switchMap, tap } from 'rxjs/operators'; | |
@Injectable({ providedIn: 'root' }) | |
export class FileUploadService implements OnDestroy { | |
public progress$ = new BehaviorSubject<Number>(0); | |
public loading$ = new BehaviorSubject<Boolean>(false); |
https://drive.google.com/file/d/12FFXQ3BOHK4Fx670PGldTasc9XuWP8Zd/view?usp=sharing
- Angular (https://angular.io)
- Angular Universal (https://angular.io/guide/universal)
- Native Scripts (https://www.nativescript.org)
This file contains 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
function debugAccess(obj, prop, debugGet){ | |
var origValue = obj[prop]; | |
Object.defineProperty(obj, prop, { | |
get: function () { | |
if ( debugGet ) | |
debugger; | |
return origValue; | |
}, |
COMING SOON...
This file contains 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
/* | |
HtmlClipper v0.1 | |
Made by Florentin Sardan | |
florentinwww (at) gmail.com | |
Project's page: | |
http://www.betterprogramming.com/htmlclipper.html | |
My portfolio: | |
http://www.betterprogramming.com |