3 Variables

How To : Solve an algebraic equation

Math can be tricky, especially when you're trying to decipher algebra. It's a love-hate thing; if you don't love math, then you hate it, and there's no in-between. But it doesn't have to be a pain to solve a few problems. It's actually quite simple once you figure it out. An a ...more

How To : Solve an equations for x

This video demonstrates how to solve algebraic equations of the first degree for the variable, "X"; in other words, the variables contained in these equations are not raised to any power other than one, which is implicit. The video starts out with an example of such an algebra ...more

How To : Protect Your PHP Website from SQL Injection Hacks

As a web developer, I often read articles about hackers (from the lowly to the knowledgeable) infiltrating websites via the dreaded 'SQL Injection' method and completely taking control, changing, gaining access, or destroying the owner's data. As a fellow web developer, I'm su ...more

How To : Write a Java Based Backdoor(RAT)

Welcome to my tutorial where Voidx and I will be expanding on my previous article to provide more clarity into the logic of the code. My code can be found here -> http://pastebin.com/2nYicFPM ***************************** Index: $->Keyword !->Start of code ^->End of code *** ...more

How To : OpenSSL Unique Encryption/Decryption Scripts

In this tutorial I will be explaining the purpose of unique encryption/decryption scripts ( I will be referring to these at "UEDS" for this tutorial). Then, I will show you how to make one. Finally I will talk about the downsides to the method I use. I will also provide links ...more

How To : Find a formula describing direct variation

In this video the instructor shows how to find a formula describing direct variation between two variables. Variation between two variables can be either direct variation or indirect variation. If a variable y is in direct variation with a variable x we can write the general e ...more

How To : Solve multi-step equations

In this video the instructor shows how to solve multi-step equations. In a multi-step equation, the equals to sign divides the two sides of the problem. To solve this kind of problem, the first thing you do is to get all the variables on one side and the numbers on the other s ...more

How To : Find the point slope form of a line equation

This is a mathematical instructional video on finding the point slope form of a line equation. This technique allows you to find the x and y intercepts of a line. The point slope form is (y-y1)=m(x-x1). The instructor tells you what each of the variables represents, and shows ...more

How To : Algebraically solve mixed quantities problems

In this video the instructor shows how to solve mixture problems using two variables. Usually in these kind of questions the problem statement goes like, if A costs $x for a pound and B costs $y for a pound, in what ratio should they be mixed such that one pound of the new mix ...more

How To : Solve percent equations

In this tutorial the instructor shows how to solve percent equations. The general form of a percent equations is that a is b% of c. As there can be three kinds of variables a, b, c, the questions involving percent equations can be of three types having one of the three variabl ...more

How To : Solve direct & inverse variation word problems

In this video the instructor teaches about direct and inverse variation. Two variables x and y are said to be in direct variation with each other if you can write them in the form y = K * x. The value of y varies directly corresponding to the value of x. Y is said to be direct ...more

How To : Add & subtract monomials in polynomials

In this video the tutor shows how to add and subtract monomials. He says that to add or subtract monomials they have to be similar terms. Similar terms are those that have same variables and equal exponents to the variables. He shows how to do this using illustrative diagrams ...more

How To : Security-Oriented C Tutorial 0x17 - Structs

What's up, peeps? In this quick tutorial, we will be looking at structs, a special kind of data type. What Is a Struct? A structure, or just struct, is a user-defined data type where we are able to group multiple variables together to form a convenient package. Why would we ...more

Basics of Ruby : Part 1 (Data Types/Data Storage)

Ruby is a dynamic, general-purpose programming language created by Yukihiro "Matz" Matsumoto in Japan around the mid-90's. It has many uses but with it's flexibility, it makes a great language to write exploits in. In fact, the entire Metasploit Framework is written in Ruby! T ...more

How To : Programming in C:Getting Started[Part 1]

What is Programming? Why need to learn? How to get started? Which language to choose? While surfing web, you must be encountering various softwares, games, etc. and might be thinking to make one, but don't know where to start. Here, I am starting series in Programming. So, w ...more

SPLOIT : How to Make an SSH Brute-Forcer in Python

NOTICE: Ciuffy will be answering questions related to my articles on my behalf as I am very busy. Hope You Have Fun !!! As much as I love other SSH bruteforcing tools like Ncrack, Metasploit, THC-Hydra, ... ( Just to mention a few ). I prefer using my own script. The tools ab ...more

How To : Make Your Remote Screenshot Captor(Python)

Hi I am a new member of null byte(although I am reading this website from the beginning) and this is going to be my first post. Let me introduce myself first ! I am from Greece, I am working as a network engineer and I am into system and network administration but definitely ...more

How To : Change object colors via ActionScript in Flash 8

Change object colors via ActionScript in Flash 8 This video is changing colors of movie items in ActionScript using Flash. Go to www.tutvid/download to get the program to change the colors. We're going to change the navigation bar and the text color. Choose the navigation bar ...more

How To : Understand nth roots and operations on radicals

This video teaches us the concept of nth roots. The video starts with the square root of constants. We find the number which when multiplies by itself for two times results in the constant inside the square root. Then we find the square root of variables. Here again the same c ...more

How To : Solve a system of equations in algebra

In this math lesson you will learn how to solve a system of equations. Watch the following video to learn how to translate a word problem into a system of linear equations. Two linear equations considered in the same time form a system of linear equations. A system of linear ...more

How To : Make ADB & Fastboot Work in Any Folder on Windows

Unless you're experienced using the Linux terminal, running ADB and Fastboot commands can get confusing very fast. The problems often stem from having to hunt for various files — usually IMG or ZIP files that you need to mod your Android phone — and then move them to your plat ...more

How To : Take Control of the Mouse & Keyboard in Python

While hackers adore the command line, working with the GUI (graphical user interface) of an operating system has some advantages. This is especially true when it comes to post-exploitation. When we can control the mouse and keyboard of a remote computer, we can truly say we ha ...more

How To : Declare and add data to arrays in C# programming

This is a basic lesson with an intro for arrays in the C# programming language. You'll learn how to create and declare and add date to a C# array. An array is a data structure, or object, that contains several variables of the same type. Learn all about it!

Goodnight Byte : Hack Our IRC Bot to Issue Commands

Welcome to the second Goonight Byte! Our second coding session was kindly hosted by th3m, so props to him for letting this happen. Our task this time was to hack the bot that we made the week prior, which was only capable of connecting to the channel and then printing message ...more

How To : Incorporate arrays into your programs written in Java

Arrays are little pockets of data distributed throughout your program. They're useful because having arrays keeps you from needing to work with hundreds of variables when programming. This specific tutorial shows you how to work with arrays when you're using Java to program.

How To : Use strings and slices when programming in Python

So you've already mastered variables and functions - now it's time to progress to strings, substrings and slices when you're working on a program using the Python programming language. Python strings are much less complex than in other languages, which makes them easy to use.

How To : Simplify radicals which are not perfect squares

Need help reducing radical expressions without perfect square or cube roots? Take heart: this free math lesson will ensure that you know everything you need to know for that next big test. Examples include square roots, cube roots, and 4th roots. You'll also learn a technique ...more

How To : Solve a linear system by elimination method

This video is about using the elimination method to solve a linear system. The lady presenting this video says that elimination method means that one of the two variables has to be eliminated while adding up the two linear equations. She then explains the example equations 6x- ...more

How To : Create a sound on the cello

Watch this instructional cello playing video to learn how to create a sound on the cello. The sound production is composed of the various elements used to create the sound on the cello. There are three variables that determine the kind of sound produced: how much weight will y ...more

How To : Solve systems of equations in algebra

In this math lesson you will learn how to solve systems of equations. Systems of equations usually have 2 equations and two variables. You can solve a system of equations by using one of the following methods. • Graphing Method • Substitution Method • Elimination Method

  • Hot
  • Latest