2
votes
4answers
194 views
How do we determine if a processor is 8-bit; 16-bit or 32-bit
Is it determined by size of the address buss; if yes then was 8086 a 20-bit processor? If no what is criteria for assigning a bit number like 8-bit, 16-bit, 32-bit to processor?
1
vote
3answers
72 views
Generating a 160bit string which is stored in an array.
Hello! I'm trying to generate a random 160bit string which is supposed to be stored in a character array named str[20]. It's obvious that the array holds 20 characters. How can I c …
2
votes
6answers
147 views
Extracting numbers from a 32-bit integer
Hi,
I'm trying to solve a riddle in a programming test.
Disclaimer: It's a test for a job, but I'm not looking for an answer. I'm just looking for an understanding of how to do …
1
vote
9answers
295 views
How to reverse bits of a byte ?
Best in PHP,
for example,
11011111 ==> 11111011
0
votes
6answers
85 views
Accessing binary MP3 Header in C via fopen
I am trying to extract the mp3 header from a file. This is different then the ID3 tags -- the mp3 header is where information about the MPEG version, bit rate, frequency, etc is he …
0
votes
3answers
91 views
How do I get a a list of files from a web directory? (in c#)
How do I get a a list of files from a web directory? If I access the web directory URL the internet browser list all the files in that directory. Now I just want to get that lis …
1
vote
1answer
66 views
How to use BITS in Powershell to upload / download files?
I've found some pages in Google regarding this, but they are either not complete or outdated. Is there a definite guide somewhere? Thanks
8
votes
2answers
970 views
What is the best way to do Bit Field manipulation in Python?
I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, bu …
2
votes
4answers
106 views
uninterlace bits from 16 bit value
I have a 16 bit value with its bits "interlaced".
I want to get an array of 8 items (values 0 to 3) that stores the bits in this order:
item 0: bits 7 and 15
item 1: bits 6 and …
1
vote
4answers
176 views
c++ how to add a zero bits byte or null to a string
Hi
I am doing a simple client implementation of TFTP.
Here i need to send read request in following format
/* send request
2 bytes string 1 byte string 1 byt …
1
vote
2answers
110 views
Why no dynamic bit pattern in function argument?
I am experimenting with bit pattern matching in Erlang:
-module(test).
-export([test/2]).
%test(P,<<X:P,0:1>>) ->
% X.
test(P,X) ->
<<Y:P,0:1>& …
3
votes
5answers
175 views
Unexpected bitshift results
I'm initializing an unsigned short int with a = 0xff (all bits are set).
Then I assign b to a>>7 which should yield (0000 0001) and it does. However, the odd thing is that when I a …
2
votes
1answer
179 views
Designing a BitStream in C#
I'm looking at the C# library called BitStream, which allows you to write and read any number of bits to a standard C# Stream object. I noticed what seemed to me a strange design d …
0
votes
1answer
56 views
Ignore certificate authority (self-signed) with BITS
Hi,
I'm trying to upload a file with a client application using BITS (Microsoft's Background Intelligent Transfer Service) via HTTPS. The development server I'm uploading to/test …
1
vote
0answers
59 views
Using HTTPS with BITS (Background Intelligent Transfer Service)
Hi all,
I am writing a client application that needs to send a file via BITS to my server. I have everything working for the most part, but I can't get the BITS connection to ope …
