It's All Writing.

Writing makes you happy.

JavaScript

How to receive a Big Integer, process it and return it at node

Code gist.github.com This sample code is also a solution to the problem at the following URL of atcoder. * https://atcoder.jp/contests/abc178/tasks/abc178_b The code receive input parameters formatted as below from stdin. 1 2 1 1 3 5 -4 -2…

How to extends an @AuraEnabled method from super class at Apex

Environment Apex Prerequisites We can not access An Extended @AuraEnabled method from Aura ( node ) as below. gist.github.com AuraHelper.js can't access c:getAccounts. So, this code is not work. Code The solution is to change SubClass as b…