Exploiting File Upload vulnerabilities (Part 1)

Tram Ho

Today, there are many websites that have functions that allow users to upload their files. Such as facebook, google drive, ... This helps users can store or share their information with everyone and at the same time bring a more...

Read more

ES2019 features (ES10)

Tram Ho

Array.prototype. {Flat, flatMap} flat() is a new instance method of array, it can create one-dimensional array from a multi-dimensional array. For example: [crayon-6605ef96962a2531931054/] By default the function will only "flat" one way, you can add param to set the number...

Read more

Build for Billion – Android.

Tram Ho

Hello everyone, today we will learn together about Build for Billion in Android. Google's text is so and we will understand simply how to build applications for billions of users, things to avoid, consider when developing applications. 1. Overview. As...

Read more

[Circle CI] Auto deploying web apps on Heroku

Tram Ho

The previous article has a guide on how to build projects with CircleCI. However, CircleCI has another advantage: automating the application deployment after building and running tests. This section we see the configuration so it automatically deploying offline. It is...

Read more

[CircleCI] Running Your First Build

Tram Ho

CI / CD is a pair of jobs that involve automating repetitive tasks by developers, including CI (Continuous Integration) and CD (Continuous Delivery), which means integration. more often, faster when code and regularly updated new versions (delivery). CircleCI is a...

Read more

Lesson 02 – Integrating Webpack for Chrome Extension

Tram Ho

Hi everybody! Welcome to the series / tutorial Programming the Chrome extension with Typescript + Vue.js . In today's article, we will continue to fix issues when building the Chrome Extension in the previous article . My solution will be to...

Read more

Protocol in Swift programming

Tram Ho

Protocol concept Protocol is understood as a blueprint containing properties, methods and other declarations to perform a certain task, features. Protocol can be implemented by a Class, Struct or Enum. When implementing a Protocol , we will have to declare...

Read more