As communication moves increasingly online, staying organized can be a challenge. The way we work at WordPress.com is unique.
Read More →Search related data in Mysql it's pretty easy
Read More →Even though the Event Loop is a single thread we have to take care of race condition since 99% of our code will run in a non main thread.
Read More →Sometimes you need a dependency that is not published as a regular package at npmjs.com
Read More →I see lots of brands advertising "Hey, download our mobile app and…"
Read More →What about if we add a component with a pie chart on the Campaign object’s record page?
Read More →An example about how to consume a Salesforce api rest
Read More →Sometimes you want to change the behavior of your code without recompiling or deploying.
Read More →How to know if a string is a number in JavaScript using a regular expression
Read More →A simple JavaScript method that removes all new lines and multiple spaces (including tab spaces) by a single space
Read More →When you execute a query with error, we get a pg-promise internal module-specific stack trace.
Read More →If you are using Node.js with some of these packages: pg-promise or pg probably you are facing this issue.
Read More →How to install Postgres database in your MacOS local machine
Read More →Optimize the page loading time by loading your style sheets in background.
Read More →Image and video management are present in almost all of our projects. I would like to share my experience with this.
Read More →A util piece of code to connect to a Redshift database
Read More →I used to use FindBugs plugin in my Java projects to detect and learn about issues and potential issues in my source code.
Read More →A cached value it’s dynamic data, expensive to calculate, that we make it constant during a period of time.
Read More →If you want to know how frequently your Visualforce pages are accessed, you just have to run a simple query on VisualforceAccessMetrics
Read More →A sitemap is very important if you want to search engines discover and index your site properly.
Read More →Prettier is a code formatter that supports many languages and can be integrated with most of the editors
Read More →Delete all the keys by a given prefix in a Redis cluster.
Read More →Let’s build a small site in Node.js using Express that will have one protected page
Read More →If you are building a website, e-commerce, a blog, etc., you will need a full-text search to find related content like Google does for every web page.
Read More →A good practice in software development is to delegate as much heavy work as possible to background jobs to avoid blocking the main execution of your application that can be a web app, mobile app, or desktop.
Read More →At different levels you might optimize your JavaScript code. Sometimes optimization is a matter of good practices such as avoid using logging in loops.
Read More →As Engineer I installed WordPress many times, facing issues such as performance and security. When you host WordPress by your own...
Read More →I’ve worked in several projects with Java, specially Java web using Tomcat as a web container and then Glassfish as application server.
Read More →Sometimes you need to upload a big file, let say bigger than 100MB. Stream from disk must be the approach to avoid loading the entire file into memory.
Read More →A simple example about how to connect to a PostgreSQL database using Node.js
Read More →Sometimes we need to configure a secure environment locally to test how our application reacts to HTTPS.
Read More →Every project has somewhere in the src folder a file called utils.js, Utils.java, utils.py, etc....
Read More →As you probably know, JavaScript buttons are not supported in Lightning Experience (LEX). In particular, you can’t use REQUIRESCRIPT. In this post, the idea is to show how to migrate a particular JavaScript button that uses sforce.connection.query sentence.
Read More →Let’s see how to convert a Salesforce JavaScript button that uses sforce.apex.execute in to Lightning Experience. The good news is you will reuse this code and the approach for all your similar buttons.
Read More →We can’t use $User, $Profile, $Label and $Api in Lightning. We need to implement a server-side solution.
Read More →A good sitemap.xml will help you a lot in terms of SEO. It’s a nice starting point if you want to index your site. It’s just a standard XML file that search engines understand.
Read More →The first step will be to create a method to guess if the HTTP request comes from HTTP or HTTPS (secure or not secure). In some context like AWS or Heroku you will have to ask by the header x-forwarded-proto instead of req.secure.
Read More →