Tagged Questions
The bin tag has no wiki summary.
12
votes
1answer
307 views
how can i detect 1-time e-credit cards?
I need to detect credit cards that are 1-time credit cards (they become obsolete after the first payment).
I know there are some bin ranges database out there. Can you share your experience on this ...
9
votes
4answers
4k views
Dll in both the bin and the gac, which one gets used?
We have a web application that's deployed to many websites with only frontend changes, the shared backend portion has it's DLL in the GAC so we only have to update that one dll and all the sites get ...
6
votes
4answers
241 views
Mathematica fast 2D binning algorithm
I am having some trouble developing a suitably fast binning algorithm in Mathematica. I have a large (~100k elements) data set of the form
T={{x1,y1,z1},{x2,y2,z2},....}
and I want to bin it into ...
6
votes
2answers
180 views
Arctan Binning, from Plot to Histogram, the tricks
Based on Sjoerd, great solution and extension on Angles, Polar Coordinate in Mathematica, please consider the Following :
list = {{21, 16}, {16, 14}, {11, 11}, {11, 12},
{13, 15}, {18, 17}, ...
5
votes
1answer
373 views
Android APK file and DEX files not created, with no warning or error
I've developed Android for a while now, using WIN7 64bit and Eclipse.
Since I've tried to install the new ADT (1.5), I get a very weird phenomena. My build doesn't complete, and doesn't generate the ...
4
votes
1answer
207 views
FindFit with BinCounts or Histogram in Mathematica
daList={62.8347, 88.5806, 74.8825, 61.1739, 66.1062, 42.4912, 62.7023,
39.0254, 48.3332, 48.5521, 51.5432, 69.4951, 60.0677, 48.4408,
59.273, 30.0093, 94.6293, 43.904, 59.6066, ...
4
votes
1answer
522 views
iPhone trash can suck animation
I am trying to use the trash can animation in an iPhone application I am building. I know the feature I need help with is a private API but the app will be in-house.
According to the iPhoneDevWiki ...
3
votes
1answer
174 views
histogram without vertical lines
When I create a histogram, it looks a lot like this:
set.seed(1)
x <- 1:100
y <- x + rnorm(50)
y=round(y)
hist(y)
Is there a way to make a histogram look a bit like this? I can only get a ...
2
votes
2answers
99 views
Find frequency for non-binned, weighted data
Here is a tricky problem (or at least so I think). I need to create a histogram, but instead of having the data and it's frequency, I have repeated data (i.e. not binned) and some weight for each ...
2
votes
3answers
148 views
Bin Packing - Brute force recursive solution - How to make it faster
I have an array which contains a list of different sizes of materials : {4,3,4,1,7,8} . However, the bin can accomodate materials upto size 10. I need to find out the minimum number of bins needed to ...
2
votes
3answers
113 views
Break up a square or rectangle into a large number of randomly sized squares or rectangles
I'm trying to break up a square or rectangle into a large number of randomly sized squares or rectangles so that none are overlapping.
Ok of course others have asked this the best thread I found is
...
2
votes
2answers
78 views
convert dec number to 6 bit binary number
I am looking to convert a dec number to a 6 bit binary number.. bin() works fine but omits leading zeros which are important.
for example:
0 = 000000
1 = 000001
2 = 000010
etc... with the largest ...
2
votes
3answers
127 views
Compute Relative Frequency in Mathematica
With :
dalist = {{379, 219, 228, 401}, {387, 239, 230, 393},
{403, 238, 217, 429}, {377, 233, 225, 432}}
BarChart@dalist
I would like to compute / Plot the relative frequency instead ...
2
votes
1answer
170 views
reading a bin file with php bin2hex function
I am trying to read a bin file that contains a lots of two 4-byte numbers in it, which I want to read and convert to hex numbers that is then going to be printed to the screen.... hopefully however I ...
2
votes
3answers
317 views
Algorithm to return all possible combinations of n objects taken from different bins
To make it more specific, I need an algorithm (recursive or not) that, given a integer n and a matrix as input, will return me all of the combinations that will have:
1) At least 1 object from each ...
2
votes
3answers
320 views
How to get the path of the PHP BIN from PHP?
How can I get the bin path of php from PHP? I saw it in phpinfo(); but I need another method that gets it in linux and windows systems.
2
votes
1answer
667 views
Variable for WiX bin directory path?
Is there an environment variable pointing to the WiX bin directory path? I want to use torch in the post-build event of my project, but I cannot find this variable. I cannot hard-code the path because ...
1
vote
1answer
12 views
Why are there so many files in the Silverlight Bin when I build my project?
There's just so many files. The XAP file, DLL file, HTML file, PDB File, and then I have all these folders with 2 letter words where inside each folders are 2 dll files.
What do these files (in ...
1
vote
1answer
9 views
Why does Visual Studio 2010 Express while publishing to FTP copy images in my Content folder to /bin/content/ AND /content/?
What should be the correct "Build Action" and "Copy to Output Directory" settings on all images, javascript files, and CSS files in my /Content/ folder in my ASP.NET MVC3 web app?
I don't understand ...
1
vote
1answer
76 views
matlab: 2D data binning
I need some help with calculating cumulative distribution.
lets say I have data like that:
data = abs(randn(1000,1));
I have to calculate probability cumulative distribution and bin it to reduce ...
1
vote
1answer
108 views
How to convert a BinaryReader to Stream in C#?
I have to read a ".bin" file fully and pass the stream to a function. I tried it with BinaryReader which worked fine for reading values byte by byte, I want to pass the whole file as a string stream ...
1
vote
1answer
86 views
vim bin mode view
How to view file in bin mode in VIM?
example:
0101010100111010010
1101001001000100001
11000110111010111010
I know how to view file in hex mode.
Thanks!
1
vote
1answer
85 views
Decompiling Non PC Binary
I have a binary file for some old music hardware I own that's been out of production for the past 3 years. The company is now bust and no longer exists.
I'm trying to reverse engineer the binary ...
1
vote
2answers
160 views
Linux Shell script, kill as another user
Recently I've been trying to get this script working:
#!/usr/bin/expect -f
set pssword [lrange $argv 0 0]
spawn su - kod -c cd cod4 -c "nohup kill 7938" > /dev/null 2>&1 &
expect ...
1
vote
1answer
39 views
Java hibernate eclipse bin directory
I am using hibernate and put xml mapping files in src/hib directory.
but when debug application eclipse run directory is bin.
Is possible to forse Eclipse also copy .xml files of mapping also to ...
1
vote
4answers
340 views
C# how convert large HEX string to binary
I have a string with 14 characters . This is a hex represantation of 7bytes. I want to convert it to binary. I tried using Convert.ToString(Convert.ToInt32(hexstring, 16), 2); For small strings this ...
1
vote
2answers
72 views
Embarrassingly simple bash scripting help
#!/bin/sh
for i in {0..999}
do
if [$i lt 10]
then
nohup java BeginIndex ~actors/00{$i} ~/index_new/ > ~/results/actors_results/00{$i}.txt
echo "INDEXING ($i)th ...
1
vote
1answer
148 views
Debugging file format confusion: ELF/BIN
I am currently working with some µC systems and I'd like to go deeper into detail to understand what is going on beneath.
I am currently working with a Motorola Coldfire and an ARM 9. For both I am ...
1
vote
1answer
201 views
Is EF Code First w/SQLCE 4 bin deployable?
I am planning to create a MVC page that will use EF CodeFirst and SQLCE 4.0. Are this technologies bin deployable/ shared hosted friendly?
I am currently using GoDaddy with .Net4
1
vote
1answer
568 views
Algorithm to determine best combinations - Bin Packing
Given a set of items, each with a value, determine the number of each item to include in a collection so that the total value is less than or equal to given limit and the total value is as large as ...
1
vote
1answer
892 views
Convert Hexadecimal MAC address to user readable formating (Python)
I'm receiving from the socket a MAC address in this format:
0024e865a023 (hex converted from binary with received-string.encode("hex"))
I would like to convert it to a user readable format like this ...
1
vote
2answers
2k views
Define the path to the “Bin” folder
I have an ASP.Net project using AJAX that I am putting on a server behind a reverse proxy.
Lets say my project is located on the server here:
C:\inetpub\wwwroot\proj\app
So the bin folder should be ...
0
votes
1answer
35 views
get index of the histogram bin in R
Here is my problem:
How can I find the index of the histogram bin in which a number falls?
In Matlab, the solution is easy. HISTC does the job:
[counts,bin] = histc(data,edges)
"bin" being what ...
0
votes
1answer
14 views
Undelete or recreate 'irc' bash command
(I'm running OS X 10.7 on a mid-2009 MBP.)
I was trying to uninstall ircII and I wound up deleting some irc commands in my /bin folder ("irc", "ircflush", "ircserv", etc).
I think that these might ...
0
votes
1answer
66 views
Too Many Cron Jobs giving me “bash: fork: Resource temporarily unavailable”
I noticed today after some crons were not performing as they should that I was getting the following error line in the log files:
/bin/sh: fork: Resource temporarily unavailable
I did some research ...
0
votes
1answer
38 views
Is a .BIN CD Image file a standard format?
In this page:
http://en.wikipedia.org/wiki/List_of_file_formats
I found many .BIN files used by many applications. Are all these the same format?
I am going to deal with .BIN files. I want to know ...
0
votes
2answers
57 views
How to apply a function across columns of data.frame?
Let's say I have a data frame with numerical values like this
AA01.AVG_Beta AA02.AVG_Beta AA03.AVG_Beta AA04.AVG_Beta AA05.AVG_Beta
1 0.15851770 0.44264830 0.46662180 0.79579230 ...
0
votes
1answer
59 views
Visual Studio 2010 can't see /bin library of OpenCV
I'm trying to use OpenCv 2.2 in Visual Studio 2010.
I've configured everything by instruction:
http://opencv.willowgarage.com/wiki/VisualC%2B%2B
and by instruction from the book:
So I've added all ...
0
votes
1answer
37 views
Bin folder message
In a web server, when I delete the DLL files in the bin folder, the web page gives error.
How can I show message.html if there is no file in the bin folder?
0
votes
1answer
123 views
Java import mysql database /bin/bash error
I want to create database import using .sql file with java then I found a code something like this
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(new String[]{"/bin/bash","-c","mysql -p -h ...
0
votes
3answers
384 views
try to change bin log directory: mysql-bin.index not found (Errcode: 13)
MySQL 5.1.54
Ubuntu 11.04
I'am try to change bin log directory in my.conf as:
[mysqld]
log_bin=/home/developer/logs/mysql/mysql-bin.log
After this changes MySQL server can't start with error:
...
0
votes
2answers
38 views
how to move the code-behid Assemblies/DLLs to a different folder than /BIN with ASP.NET
please point me how to move the code-behid Assemblies/DLLs to a different folder than /BIN with ASP.NET or goup/merge those DLLs in /Bin to one DLLs file . bcoz i wanna seperate DLLs files as its ...
0
votes
1answer
178 views
Reasons for “bin dir change or directory rename” app restart? (Fixed i think)
------Update / FIX----------------
Well i did two things which seemed to have it work- 1) changed my app pool's Advanced settins>> Process Model>> identity to "Network Service" 2) directed it to use ...
0
votes
2answers
81 views
How the dlls in an ASP.NET bin folder get updated?
We have some DLLs in the bin folder. We build the DLLs in separate solutions and output to different directories. Now, when I build the web site, the DLLs in its bin folder gets updated automatically ...
0
votes
0answers
19 views
Installing modules and extensions for a asp.net website inside of itself
I couldn't think of the best way to describe my problem in the title, so forgive me if it's not clear.
Basically what I'm trying to do is create a system that will allow custom extensions (like ...
0
votes
1answer
86 views
How to get binding informations for a .Net assembly
I have a dll in the bin folder of my project and I am not able to understand why it is there.
It looks like it is not required by the project, indeed if I remove it the application runs fine.
...
0
votes
2answers
224 views
C# binary to string
I am reading from serial port using string messaga = _serialPort.ReadLine();
When i Console.WriteLine(messaga); random characters appear on the screen which is logical because the binary data is non ...
0
votes
1answer
185 views
kiss FFT bin amplitude question
I have been spending quite a bit of time studying FFT's. I am in particular interesting in using KISSFFT because it is a very portable C implementation.
I am still very unclear how to turn i[x] and ...
0
votes
1answer
61 views
How do I divide a matrix into a series of bins based on polar coordinates
I'm trying to write a program in Octave/Matlab that aims to take an image, perform the 2D Fast Fourier Transform on that image, and then take the FFT data and divide it into a series of bins from ...
0
votes
1answer
124 views
Organizing Assemblies for Several WCF Services in same Domain
Well, the problem is how to organize assemblies for several WCF services hosted in the same domain, when the services might use different versions of the same referenced assemblies?
The thing is, ...