Intel Pin Tool; Setting up in 5 easy steps

This is the beginning of the Intel Pin Tool Series. Having read this post, you will be able to set up Intel pin tool and run a basic example to count the number of instructions in your program. Step 1 Download the pin tool from Intel (https://software.intel.com/en-us/articles/pin-a-binary-instrumentation-tool-downloads). Select the appropriate operating system and copy the … Continue reading Intel Pin Tool; Setting up in 5 easy steps

Add Matplotlib Percentage Ticks to a Histogram

Matplotlib provides an easy way of converting your yaxis to percentages. It's just a one liner import matplotlib.ticker as ticker ax.yaxis.set_major_formatter(ticker.PercentFormatter(xmax)) But the issue is you can't space the yticks as you want them to be. Usually you can do this by setting yticks (ax.set_yticks). But the issue is, python converts the axis directly to … Continue reading Add Matplotlib Percentage Ticks to a Histogram

Adding a Heatmap Overlay Over React Native Map

React Native Map  is the go to option if you're trying to implement a map within a react-native application. I'm certain that you've been devastated to find out that React Native Maps does not officially support a Heatmap overlay. However,  based on the great work of pjamrozowicz,  I have forked the react native maps (v0.21.0), and added … Continue reading Adding a Heatmap Overlay Over React Native Map

Submitting a Serverless Application to AWS Serverless Repository in 5 easy steps

Submitting a Serverless application to AWS Serverless Repository can be a tedious task since there isn't a lot of documentation available. There aren't any review processes in the submission process and only the SAM (Serverless Application Model) template is validated. Furthermore, SAM template verification is strictly enforced by validating the syntax; i.e. cloud formation template … Continue reading Submitting a Serverless Application to AWS Serverless Repository in 5 easy steps

Slappbooks: Accounting Application on a Serverless Architecture

Serverless application development has never been easier.  With the introduction of the Sigma IDE  by SLAppForge, Serverless application now takes much less time. The post intends to explain the full development process of a lambda function using the Sigma IDE and by the end, you will understand the advanced functionality provided by the IDE. Need to … Continue reading Slappbooks: Accounting Application on a Serverless Architecture

Mapping Country Enum Values in NetSuite

Oh boy, is this the article you've been searching across for a while? It doesn't really surprise me because NetSuite provides very little documentation for webservices integrations. On top of that, NetSuite makes a developers life very easy by its internal id game. So If you're really interested in mapping country enum values easily, you've … Continue reading Mapping Country Enum Values in NetSuite