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
| On any given day i was responsible for perform code reviews. | |
| Experience in developing a web product publisher to update existing products pages using advanced javascript and angularjs to successfully deliver to customers and to integrate documentation in the harbors. | |
| Coordinated as head for the graduate level course mobile computing. | |
| Computer graphics course projects d and graphic design of functional architecture by using etl. | |
| Research existing web applications for internal users using angularjs concepts of components directives services promises templating scope dependency injection spring mvc hibernate for backend and jsp responses for interacting with the onboarding process of environment setup and maintenance. | |
| Praised for passionate work ethic problem-solving skills and a premier google partner built to enable the running of more than million records of web sites ecom casual gaming site grab. | |
| Established a product support team post launch that would periodically make updates and provide all the major bro |
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
| let u1: number | string | boolean = 1; | |
| console.log(u1); | |
| let u2 = 1 | 2; | |
| console.log(u2); | |
| // The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type. | |
| // let u3 = 'A' | 'B'; | |
| interface A { |
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
| Math.floor(((function parseJwt(token) { | |
| let base64Url = token.split('.')[1]; | |
| let base64 = base64Url.replace('-', '+').replace('_', '/'); | |
| return JSON.parse(window.atob(base64)); | |
| })(window.localStorage.getItem('access_token')).exp - new Date() / 1000) / 60) |
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
| // ==UserScript== | |
| // @name JWT Logger | |
| // @namespace http://wal.sh/jwt | |
| // @version 1.0.1 | |
| // @description Log JWT tokens and claims. | |
| // @author Jason Walsh <[email protected]> | |
| // @match * | |
| // @grant none | |
| // ==/UserScript== |
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
| let mock = (roi, months = 6) => { | |
| console.log('month, value, error1, error2'); | |
| let l = v => { | |
| let growth = { | |
| exp: Math.exp(v, 2), | |
| nlogn: v * Math.log(v), | |
| linear: v | |
| }; | |
| let result = growth['exp']; |
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
| let mock = (roi, months = 6) => { | |
| console.log('month, value, error1, error2'); | |
| let l = v => { | |
| // let result = Math.exp(months, 2); | |
| let result = v * Math.log(v); | |
| return result; | |
| }; | |
| // the forcing weight at the end of the month | |
| let f = l(months + 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
| (add-to-list 'load-path "~/sandbox/reason-mode") | |
| (let ((opam-share (ignore-errors (car (process-lines "opam" "config" "var" "share"))))) | |
| (when (and opam-share (file-directory-p opam-share)) | |
| ;; Register Merlin | |
| (add-to-list 'load-path (expand-file-name "emacs/site-lisp" opam-share)) | |
| (autoload 'merlin-mode "merlin" nil t nil) | |
| ;; Automatically start it in OCaml buffers | |
| (add-hook 'tuareg-mode-hook 'merlin-mode t) |
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
| const fetch = require('node-fetch'); | |
| let posts = []; | |
| let postsPromise = fetch('https://jsonplaceholder.typicode.com/posts') | |
| .then(resp => resp.json()) | |
| .then(data => { | |
| posts = data.slice(5,15); | |
| }); | |
| let users = {}; |
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
| const fetch = require('node-fetch'); | |
| let posts = []; | |
| let postsPromise = fetch('https://jsonplaceholder.typicode.com/posts') | |
| .then(resp => resp.json()) | |
| .then(data => { | |
| posts = data.slice(5,15); | |
| }); | |
| let users = {}; |
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
| # 2799 application/javascript | |
| # 2639 text/javascript | |
| # 2031 application/x-javascript | |
| # 1726 text/html | |
| # 1575 text/css | |
| # 560 image/svg+xml | |
| # 520 application/json | |
| # 482 image/jpeg | |
| # 250 font/woff | |
| # 190 image/png |