Minggu, 31 Juli 2016

Simple Trick to Make Google’s 2 Step Login Less Annoying

2FA (Two-factor authentication ) requires something you know (your password) plus something you have (usually your phone) to have access to your account. It is much safer than using just a password, and you should enable it on all of your accounts which support 2FA. However, the 2FA demonstrates a classic trade-off between convenience and security. Even though punching in the code to log in makes your account very secure, it is a pain to open your authentication app every single time and then type a number. You can use the Google’s new 2FA method to make using two-factor authentication far less annoying. To enable this feature for your

The post Simple Trick to Make Google’s 2 Step Login Less Annoying appeared first on Coding Security.


Simple Trick to Make Google’s 2 Step Login Less Annoying
read more

What is A Firewall and Reasons Why You Should Use it

We all heard about firewall at some point of time, what are they used for ? Do they stop viruses? Well actually, there is a great chance that you are now using a firewall,  if  your are running a modern OS on your computer, there is be one built in, or else your security suite will have a firewall. But what is this firewall for? Keep reading for reasons why you do, need it. What Is a Firewall? Lets start it with what a firewall actually is. You should understand that there are no sparks, no flames, no fuel of any kind of that stuff involved, A firewall

The post What is A Firewall and Reasons Why You Should Use it appeared first on Coding Security.


What is A Firewall and Reasons Why You Should Use it
read more

How To Set Password to Your BIOS and Why You Should Do It

With date breaches and unauthorized access of computers becoming common today, you can never have enough  security on your system. We’ve shown how to make sure your new PC secure, and every new setup there should include properly locking down your system. One way of achieving better safety to user computer is by the  addition of a password for the BIOS. This basic firmware runs right off your PC’s motherboard before you ever get into Windows.   You might want to lock the BIOS to prevent the unauthorized access (so someone can not get in and screw with settings, such as changing the boot order),

The post How To Set Password to Your BIOS and Why You Should Do It appeared first on Coding Security.


How To Set Password to Your BIOS and Why You Should Do It
read more

4 Tips to Make Your Browsing Safer

Browsing is our everyday activity and one has to be very careful while browsing as the number of online threats are increasing day by day. No one knows what hides beneath a link that pops-up. Here are some of the tips to make your browsing experience safe. Keep Your Browser Up-To-Date Always keep your browser up to date this is because when you update  your browser, you get access to new features and also new bug fixes. You can get better protection from malware and security flaws, thanks to the security fixes that are bundled with every new release you get. Don’t ever forget to

The post 4 Tips to Make Your Browsing Safer appeared first on Coding Security.


4 Tips to Make Your Browsing Safer
read more

What is the principle modeling in UML

Modeling has rich history in all the engineering disciplines. That experience suggests four basic principles of modeling. First principle of modeling: The choice of what models to create has a profound influence on how a problem is attacked and how a solution is shaped. Choose your models well. The right models will highlight the most nasty development problems. Wrong models will mislead you, causing you to focus on irrelevant issues. Second principle of modeling: Every model may be expressed at different levels of precision. Sometimes, a quick and simple executable model of the user interface is exactly what you need.

The post What is the principle modeling in UML appeared first on Coding Security.


What is the principle modeling in UML
read more

What is conceptual model in UML

First, let’s see what is the use of learning conceptual model of UML. To learn a new language, for example, let’s consider English, we learn the character set (a-z) first and then the words and then several rules to form sentences using those words. Similarly to learn using UML, we should learn the vocabulary and then rules for creating UML diagrams. The conceptual model of UML contains the UML’s vocabulary and rules. So, to understand using UML and to create using UML diagrams first we need to learn the conceptual model of UML. The conceptual model of UML contains the

The post What is conceptual model in UML appeared first on Coding Security.


What is conceptual model in UML
read more

How builder pattern works

Intent: Separate the construction of a complex object from its representation so that the same construction process can create different representations.   Motivation: A RTF (Rich Text Format) reader application should be able to convert a RTF document to several formats like: plain text or TeX representation or into a text widget which allows users to directly interact. The problem here is, the number of possible conversions is open ended. So, it should be easy to add a new conversion without modifying the reader. A solution to this problem is, the RTFReader class uses a TextConverter object that converts RTF

The post How builder pattern works appeared first on Coding Security.


How builder pattern works
read more