Name: Prince
Birthday: 28 February 1993
Job: Freelancer
Email: [email protected]
Skype: 1081a1d198d8081c
Redis is an advanced key-value store that is open source. Because keys may contain strings, hashes, lists, sets, and sorted sets, it is sometimes referred to as a data structure server.This artical is about how to install multiple redis on a single server Redis is a single-threaded event loop that is highly efficient. It’s really …
JavaScript (usually shortened as JS) is a lightweight, interpreted, object-oriented programming language with first-class functions. It’s best known as the scripting language for Web pages, although it’s also used in many non-browser applications. Dynamic, multi-paradigm, prototype-based scripting language that supports object-oriented, imperative, and functional programming paradigms.This article will teach you some fundamental or advanced javascript …
When you request a website from a web server, the server replies with the content (e.g., HTML or an image) and numerous HTTP headers. The response’s content type and the web server’s version are both listed in these headers, for example. The HTTP Security Headers are a special kind of header that is appended to …
The Simple Storage Service is an object-level storage solution provided by Amazon Web Services (AWS). This cloud service allows us to store any kind of file. It provides limitless storage and a single file upload limit of 5 TB. Many online applications now utilise an S3 bucket for static files as well as static hosting …
Most websites or web applications use S3 buckets and Cloudfront to host static content like CSS files, Javascript files, images, and many more. Today’s tutorial is all about storing your objects (data files) in an s3 bucket and how to secure your bucket using CloudFront. OAI (Origin access identities) The main advantage of using OAI …
How can I grant users access to S3 objects? All objects are set to private by default, which means that only the bucket account owner has access to them at first. If you want a user to have access to a certain bucket or object without making it public and secure aws S3 upload object …
This article is about linux terminal commands $ pwd – The pwd command is used to display the location of the current working directory. $ mkdir <directory name> The mkdir command is used to create a new directory under any directory. $ rmdir <directory name> The rmdir command is used to delete a directory. $ ls The ls command is used …
A website is incomplete without mail functionality Both static and dynamic websites require it. As contact form or another way like feedback form or anyway, you can use it, So today I will tell you how you can send email from the website in an easy way. With Few steps, you can, integrate this PHP …
This is a simple typing game experimental using jquery. The main criteria here is to understand how to read Keyboard Character Codes and displaying its equivalent Character on to screen. You may notice so many bugs in live demo, because this program is not implemented fully as we concentrated on important code blocks only. Live …