View allAll Photos Tagged binary

Athan looking at the Binary Sunset before Star Wars in Concert in Orlando, Florida.

yellow green extraterrestrial alien holding up a convenience store. note the shirt worn by the store's clerk and the ironic safe behind him. This op-ed cartoon was featured in the binary trading news of July 11, 2013 at blog.optionsclick.com/2013/07/11/us-dollar-down-on-fed-mi...

The culmination of three years work and the interpretation of the electronic compositions of Barry Gilbey, arranged by Darrol Barry and played by Loxley Silver Band.

Claims to not be a gay porn star.

After seeing Zevan's post at actionsnippet, I wanted to do this 'check' with fractios in binary format.

 

rows from top:

1/2 : 0.10000000000000000000

1/3 : 0.01010101010101010101

1/4 : 0.01000000000000000000

1/5 : 0.00110011001100110011

1/6 : 0.00101010101010101010

1/7 : 0.00100100100100100100

1/8 : 0.00100000000000000000

1/9 : 0.00011100011100011100

1/10:0.00011001100110011001

etc.

 

with values near to powers of 2, like 1/(2^n-1), 1/2^n and 1/(2^n+1), you can see a clear repeating pattern (00100100100, 001000000000, 000111000111) elsewhere it appears quite chaotic

  

Actionscript source code:

 

var pixelSize:int = 2;

var bmd:BitmapData = new BitmapData(stage.stageWidth/pixelSize,stage.stageHeight/pixelSize, false,0x00);

var bitmap:Bitmap = new Bitmap(bmd);

 

addChild(bitmap);

bitmap.scaleX = bitmap.scaleY = pixelSize;

 

render(bmd);

 

// fills the bitmap

function render(bmd:BitmapData):void {

for (var iy:int = 0; iy!=bmd.height; iy++) {

var binaries:Array = binaryDecimal(1,iy+1,bmd.width);

for (var ix:int = 0; ix!=bmd.width; ix++) {

bmd.setPixel(ix,iy,(binaries[ix]!=0) ? 0xFFFFFF : 0 );

}

}

}

  

/* In this case I needed a precision of something like 256 binary digits

* so I had to do the division in a bit different manner.

* This algorithm is a bit like doing division in traditional way on paper ...

* returns binaries in an array like 1/8 = [0, 0, 1, 0, 0, 0, ...]

*/

 

function binaryDecimal(divident:int=1, divisor:int=1, length:int=32):Array {

var binaries:Array = [];

for (var i:int =0; i!=length;i++) {

divident <<=1;

if (divident<divisor) {

binaries.push(0);

} else {

binaries.push(1);

divident -= divisor;

}

}

return binaries;

}

ceramic, diodes

20"h x 10"w x 10"d

2016

Silent Horizon ENB

Make your own Cube by sticking these stickers or carving these shapes onto a cubic block of wood, plastic, glass, etc.

Happy Easter everyone!

Noticed our current mileage.

my first tatto after about a week of healing. It was done at "Ink Tank" in Redmond, OR. Thanks Greg.

Great sentences on the set!

MADRID, SPAIN - JUNE 28: A demonstrator paints a non-binary flag on their body during a rally organised by the plataform Orgullo Crítico (Critical Pride) from Atocha to Plaza España on June 28, 2021 in Madrid, Spain. On June 29, the Spanish government will approve the bill calling for "real and effective equality for trans people." This new bill, which is a combination of the Trans and LGBTQ bill, seeks to guarantee the rights of LGBTQ people and allow them to modify their name and sex in the Civil Registry from the age of 14. (Photo by Isabel Infantes Morcillo/Getty Images)

1 2 ••• 27 28 30 32 33 ••• 79 80