0
votes
1answer
18 views
Handling large ActiveRecord object set as binary data
I have an issue with manipulating large number of record objects of type ActiveRecord model(Records are extracted from a complex operation but from the same table) and I want to pa …
0
votes
4answers
38 views
Viewing File in Binary in Terminal
First things first, I'm on a Mac ssh'ing into a Linux machine via Terminal.
I would like to view the contents of a file in the current directory, but in binary. Is there a binary …
2
votes
2answers
72 views
How to send a push notification using Erlang?
I'm trying to send a push notification to APNs using Erlang.
This is the code I came up with so far:
-module(apnstest2).
-export([connect/0]).
connect() ->
application:sta …
0
votes
3answers
31 views
is there any api provided by dot net platform to convert a string or bytres array into user defined object?
Suppose i have input array
byte A[50];
i have put three diffrent data types values in array
as below
string of length 42 bytes(converted into binary)
long with length 4 bytes(co …
1
vote
5answers
104 views
Bitwise Operation and Usage
x = 1 # 0001
x << 2 # Shift left 2 bits: 0100
# Result: 4
x | 2 # Bitwise OR: 0011
# Result: 3
x & 1 # Bitwise AND: 0001
# Result: 1
I can …
2
votes
3answers
73 views
Can I distribute a modified GPL binary which I use from my closed source application
This is very similar to other questions, but none of the other ones quite answer it, so please read through fully before shouting at me :)
(See e.g. http://stackoverflow.com/quest …
1
vote
3answers
59 views
What is a suitable buffer for Python’s struct module
In Python I'm accessing a binary file by reading it into a string and then using struct.unpack(...). Now I want to write to that string using struct.pack_into(...), but I get the e …
0
votes
1answer
21 views
Read version info from .ABR file (Photoshop brush set)
Is it possible to detect which Photoshop version a brush set (.abr) file is compatible with from its binary data?
There is a open source C# programm called ABRViewer but it doesn' …
0
votes
2answers
31 views
suggestions for using PATH to executables with version control (Mercurial)
So I'm pretty new to version control but I'm trying to use Mercurial on my Mac to keep a large Python data analysis program organized. I typically clone my main repository, tweak …
0
votes
2answers
76 views
How are float numbers represented in binary string? [closed]
Possible Duplicate:
How is floating point stored? When does it matter?
How does float numbers represented in a binary string in any programming language or generally?
Be …
3
votes
8answers
127 views
Determine source language from a binary?
I responded to another question about developing for the iPhone in non-Objective-C languages, and I made the assertion that using, say, C# to write for the iPhone would strike an A …
3
votes
6answers
190 views
Fast modulo 3 or division algorithm?
Hello
is there a fast algorithm, similar to power of 2, which can be used with 3, i.e. n%3.
Perhaps something that uses the fact that if sum of digits is divisible by three, then …
4
votes
2answers
76 views
C# locking read while writing binary file
Hi,
I am trying to figure out how to write a binary file with a FileStream and BinaryWriter, and keep the file locked for read while I am writing. I specifically dont want other …
0
votes
5answers
75 views
Best algorithm to find all possible permutation of given binary bits
Hi,
I am looking for an optimal algorithm to find out remaining all possible permutation
of a give binary number.
For ex:
Binary number is : ........1. algorithm should return …
1
vote
4answers
35 views
Storing hexadecimal values as binary in MySQL
I was thinking about how I'm storing passwords in my database : appropriately salted SHA1 strings in a CHAR(40) field. However, since the character data in there is actually just a …
