Questions about this topic? Sign up to ask in the talk tab.
User contributions
From NetSec
This user is currently blocked. The latest block log entry is provided below for reference:
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 06:09, 19 July 2012 (diff | hist) . . (0) . . m Bitwise math/Negatives/Sign and Magnitude (moved Bitwise math/Negative Numbers/Sign and Magnitude to Bitwise math/Negatives/Sign and Magnitude) (current)
- 06:09, 19 July 2012 (diff | hist) . . (0) . . m Bitwise math/Negatives/Two's Compliment (moved Bitwise math/Negative Numbers/Two's Compliment to Bitwise math/Negatives/Two's Compliment) (current)
- 05:51, 19 July 2012 (diff | hist) . . (-15) . . SQL injection/Countermeasures/Sanitizing (Hatter:) (current)
- 05:47, 19 July 2012 (diff | hist) . . (+68) . . User talk:Atlas (current)
- 04:19, 19 July 2012 (diff | hist) . . (+48) . . Bitwise math/Rotate with Carry (forgot this) (current)
- 04:19, 19 July 2012 (diff | hist) . . (-1,177) . . Bitwise math (→Rotate With Carry)
- 04:18, 19 July 2012 (diff | hist) . . (+1,212) . . N Bitwise math/Rotate with Carry (Created page with "Moving on now to rotate with carry. Rotate with carry occurs on a computer when a number is too large to fit into a single register. For example: On 32 bit systems the largest va...")
- 04:18, 19 July 2012 (diff | hist) . . (-2,781) . . Bitwise math (→Overflows)
- 04:18, 19 July 2012 (diff | hist) . . (+2,856) . . N Bitwise math/Overflows (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> Now, overflow occurs in a "signed" integer when it increments too far. Using a nibble for an example, {| class="wikitable" width...") (current)
- 04:17, 19 July 2012 (diff | hist) . . (-2,856) . . Bitwise math (→Negative Numbers)
- 04:16, 19 July 2012 (diff | hist) . . (+2,389) . . N Bitwise math/Negatives/Two's Compliment (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> A two's complement is basically a NOT operation performed on the nibble. Any binary number is converted between positive and negat...")
- 02:51, 19 July 2012 (diff | hist) . . (+46) . . N Template:Path (Created page with ":<span style="font-size:.75em;">{{{1}}}</span>") (current)
- 02:27, 19 July 2012 (diff | hist) . . (+606) . . N Bitwise math/Negatives/Sign and Magnitude (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> The first bit is considered the sign bit, which if set, translates the number to it's negative counterpart. While this is very st...")
- 02:26, 19 July 2012 (diff | hist) . . (+142) . . N Bitwise math/Negatives (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> There are several ways to represent a negative number: * Sign and Magnitude * Two's Complement")
- 02:25, 19 July 2012 (diff | hist) . . (-2,413) . . Bitwise math (→Circular Shift or Bit Rotation)
- 02:24, 19 July 2012 (diff | hist) . . (+2,509) . . N Bitwise math/Bit Rotation (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> Circular shifts, or bit rotation occurs in processors which involves rotate /with carry/. Circular shifts are the same as rotate /...")
- 02:22, 19 July 2012 (diff | hist) . . (-3,479) . . Bitwise math (→Shift and rotate)
- 02:22, 19 July 2012 (diff | hist) . . (+1,184) . . N Bitwise math/Exercises (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> 1) Solve for B left shift one ::{| class="wikitable" width="40%" style="text-align:center" |- !Operation !Hexadecimal !Binary |-...")
- 02:20, 19 July 2012 (diff | hist) . . (+2,356) . . N Bitwise math/Logical shifts (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> For logical shifts, the bytes are assumed to be in big endian. Using A or 1010 as an example: :''Example...") (current)
- 02:19, 19 July 2012 (diff | hist) . . (+179) . . N Bitwise math/Shift and rotate (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> Each of these operations can occur either to the right or to the left. Examples will use nibbles as operands (4 bits or 0.5 bytes).")
- 02:17, 19 July 2012 (diff | hist) . . (-7,481) . . Bitwise math (→NOT, AND, OR and XOR)
- 02:17, 19 July 2012 (diff | hist) . . (+1,758) . . N Bitwise math/Operators/XOR/logic table (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :{| class="wikitable" width="40%" style="text-align:center" | '''XOR''' ! scope="col" | 0 ! scope="col" | 1 ! scope="col" | 2 ! s...")
- 02:15, 19 July 2012 (diff | hist) . . (+668) . . N Bitwise math/Operators/XOR/example (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''Example: A xor F = 5'' ::{| class="wikitable" width="40%" style="text-align:center" |- !Operation !Hexadecimal !Binary !comment...")
- 02:15, 19 July 2012 (diff | hist) . . (+189) . . N Bitwise math/Operators/XOR/properties (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> ::* Anything xor'd with itself results in 0 ::* Anything xor'd with 0xF is the same as a "not" ::* Anything xor'd with zero result...")
- 02:14, 19 July 2012 (diff | hist) . . (+181) . . N Bitwise math/Operators/XOR/rules (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''XOR determines which bits differ in the two binary numbers used as operands.'' ::* 1 xor 1 = 0 ::* 1 xor 0 = 1 ::* 0 xor 0 = 0")
- 02:12, 19 July 2012 (diff | hist) . . (+228) . . N Bitwise math/Operators/XOR (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> {{info|<center>XOR is a bitwise comparison operator that returns a true bit if the compared bits in question are different. If the...")
- 02:12, 19 July 2012 (diff | hist) . . (+1,818) . . N Bitwise math/Operators/OR/logic table (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :{| class="wikitable" width="40%" style="text-align:center" | '''OR''' ! scope="col" | 0 ! scope="col" | 1 ! scope="col" | 2 ! sc...")
- 02:11, 19 July 2012 (diff | hist) . . (+505) . . N Bitwise math/Operators/OR/example (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''Example: 5 OR C = D'' ::{| class="wikitable" width="40%" style="text-align:center" |- !Operation !Hexadecimal !Binary !commen...")
- 02:10, 19 July 2012 (diff | hist) . . (+182) . . N Bitwise math/Operators/OR/properties (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> ::* Anything OR'd with itself results in itself ::* Anything OR'd with 0xF results in 0xF ::* Anything OR'd with 0x0 results in it...")
- 02:09, 19 July 2012 (diff | hist) . . (+167) . . N Bitwise math/Operators/OR/rules (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''OR determines if any bits are true from the given binary operands'' ::* 1 or 1 = 1 ::* 1 or 0 = 1 ::* 0 or 0 = 0")
- 02:07, 19 July 2012 (diff | hist) . . (+145) . . N Bitwise math/Operators/OR (Created page with "{{subpage|Bitwise math}} {{info|<center>'''OR''' will return true bits for the respective placeholder if ''any'' of the bits are true.</center>}}")
- 01:29, 19 July 2012 (diff | hist) . . (+1,756) . . N Bitwise math/Operators/AND/logic table (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :{| class="wikitable" width="40%" style="text-align:center" | '''AND''' ! scope="col" | 0 ! scope="col" | 1 ! scope="col" | 2 ! s...")
- 01:28, 19 July 2012 (diff | hist) . . (+508) . . N Bitwise math/Operators/AND/example (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''Example: 0x6 AND 0x5 = 0x4'' ::{| class="wikitable" width="40%" style="text-align:center" |- !Operation !Hexadecimal !Binary !...")
- 01:28, 19 July 2012 (diff | hist) . . (+183) . . N Bitwise math/Operators/AND/properties (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> ::* anything AND'd by itself results in itself ::* anything AND'd with 0xF results in itself ::* anything AND'd with 0x0 results i...")
- 01:26, 19 July 2012 (diff | hist) . . (+239) . . N Bitwise math/Operators/AND/rules (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''AND compares each bit and if both bits per placeholder are true, then it returns a true for that placeholder, all else gets tur...")
- 01:25, 19 July 2012 (diff | hist) . . (+224) . . N Bitwise math/Operators/AND (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> {{info|<center>'''AND''' returns “TRUE” per true bit in both of the required two operands. True is 1 and false is 0. It operat...")
- 01:25, 19 July 2012 (diff | hist) . . (+275) . . N Bitwise math/Operators/NOT (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> '''NOT''' is a bitwise operator that takes only ONE operand. It inverts or reverses the binary value. Example: A = 1010 in bi...")
- 01:24, 19 July 2012 (diff | hist) . . (+120) . . N Bitwise math/Operators (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> Note: all examples in this section will be using hexadecimal and binary.")
- 01:22, 19 July 2012 (diff | hist) . . (-662) . . Bitwise math (→Binary to Hexadecimal)
- 01:15, 19 July 2012 (diff | hist) . . (+749) . . N Bitwise math/Binary to Hexadecimal (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> The past exercises have featured working with 4 bits at once (4 values ranging from 0-1, e.g. 0001). This is known as a ''nybble''...") (current)
- 01:13, 19 July 2012 (diff | hist) . . (-2,682) . . Bitwise math (→Introduction to Binary)
- 01:12, 19 July 2012 (diff | hist) . . (+873) . . N Bitwise math/Introduction/Addition (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> Much like the decimal system, binary numbers can be added together. For this example the binary numbers 0110 and 0010 are going to...")
- 01:11, 19 July 2012 (diff | hist) . . (+1,999) . . N Bitwise math/Introduction (Pretty sure I messed this up oh well.)
- 04:07, 17 July 2012 (diff | hist) . . (+12) . . User:Mike/wikilink.pl
- 04:06, 17 July 2012 (diff | hist) . . (+3,620) . . N User:Mike/wikilink.pl (4 mutiny)
- 22:42, 15 July 2012 (diff | hist) . . (+39) . . CPP/Syntax/Includes (current)
- 22:40, 15 July 2012 (diff | hist) . . (-205) . . CPP (→Includes)
- 22:38, 15 July 2012 (diff | hist) . . (+224) . . N CPP/Syntax/Includes (Created page with "{{code|text= <source lang="cpp"> #include <library> //tells the compiler to look for 'library' in default library path. #include "/path/to/library" //tells the compiler to look ...")
- 01:23, 15 July 2012 (diff | hist) . . (-131) . . Template:Subpage (current)
- 01:20, 15 July 2012 (diff | hist) . . (+54) . . Template:Subpage
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)