Tagged Questions
The mix tag has no wiki summary.
3
votes
3answers
90 views
Mixing different categories results, ordered by score in MySQL
In my PHP application, I have a mysql table of articles which has the following columns:
article_id articletext category_id score
Each article has a score which is calculated based on how ...
3
votes
3answers
2k views
mixing 2 sounds from ByteArray
I have build a mixer and save all the sequence in an array and then play it again, now I want to save the mix as an MP3, I have looked for any way to save the mix and the answer is to load the sounds ...
3
votes
1answer
315 views
How does division work in MIX?
Can someone explain to me how division in MIX (from TAOCP by Knuth) works on a byte-to-byte basis?
rA = |-| . . . .0|
rX = |+|1235|0|3|1|
The memory location 1000 contains |-|0|0|0|2|0|.
When ...
2
votes
5answers
58 views
Mixing up the middle of strings in javascript
I'm looking for an eloquent way to mix up the middle characters of words in a string, as in "this is an example string" becomes "tihs is an eplamxe sritng."
I'm thinking first separate the words into ...
2
votes
2answers
46 views
Git merge: ours+their mixture, ignoring conflicts. Possible?
I'm wondering if I can tell git to resolve conflicts by appending "their" code blocks after "ours".
Does he "know" at all about C-language code blocks ?
Example:
//====== ours ======
....
if(cond1)
...
2
votes
1answer
126 views
Using C MPI syntax in a C++ application
I am developing a C++ MPI application. I have some existing code that is a C MPI application which partly do what I want, so I should be able to copy some of the code (or rewrite it in a cleaner C++ ...
2
votes
2answers
215 views
MIX or MMIX - what is the best
Hi my first question …
I start reading ‘The Art of Computer Programming’. I know it’s hard. First I decide to lean the language of book – I start with MIX. I made some exercises and I think I can ...
2
votes
1answer
604 views
Expression blend behavior Mix 09 pack gallery
Hi Everyone :)
I'm a designer so not to knowledgable at coding :(
I'm trying to install a behavior from the gallery on Expression. I've tried this way
...
1
vote
0answers
32 views
Mixing audio with java
I have been looking for good examples of sound mixing using Java in vain. I am developing an Android app and would like to implement such feature. I am mainly looking for a way of mixing (or merging) ...
1
vote
0answers
60 views
Mixing audio on android with Jmusic
I have been working on a music app for android devices for the past few months. I have written a considerable amount of code so far. However, I have been stuck for almost a month on the mixing part of ...
1
vote
0answers
34 views
Falsify audio input from a microphone for another program in Java?
I have not looked into the Java Sound API too much before I had this idea,
so I went and looked at the Tutorial by Oracle concerning this topic.
I did not find what I was looking for, though...
...
1
vote
1answer
82 views
Is there a simple DirectShow filter that can mix audio together of the exact same format?
I have a DirectShow application written in Delphi 6 using the DSPACK component library. I want to be able to mix together audio coming from the output pins from multiple Capture Filters that are set ...
1
vote
1answer
167 views
including c++ libraries in ios programming
I'm developing an ios app that's very basic and uses objective almost all of the time. However my app needs to deal with big integer numbers (eg: 2^200) and add and multiply them. To achieve that I ...
1
vote
3answers
65 views
Superpose images via shell
I have two figures, one is a data plot resulting from some calculations and made with matplotlib and the other is a world map figure taken from google maps. I would like to reduce the matplotlib ...
1
vote
1answer
161 views
How to force OpenAL to mix in mono on the iPhone
When I run my app with default OpenAL settings I can see that it mixes sounds at 44khz stereo, here's what I get in the console (running on an iPhone 4):
AudioStreamBasicDescription: 2 ch, 44100 ...
1
vote
6answers
333 views
Can i Mix $_get and $_post?
in order to edit my entries i want to:
<form id="pregunta" name="pregunta" class="form_pregunta" method="post" action="pregunta.php?id=26">
<h2>Titulo de la ...
1
vote
1answer
533 views
What is the easiest way to mix 8bit 8000Hz PCM_ULAW samples?
I want to mix to multiple ULAW samples together in Java. Is there a way to do so without converting to PCM? Im trying to do a 8000Hz 8bit VoIP app. Im testing with AU files (created in goldwave) since ...
1
vote
4answers
104 views
mix N bits with next N bits (e.g each 4bits) 00001111 -> 01010101
As the title of this question tells I want to know the best way to mix blocks of bits within an integer (especially 64bit unsigned)
for example I have 8bit integer, where
it's bits are 0000 ...
0
votes
4answers
39 views
How can I use Jquery efficiently? and can I mix libraries/plugins in the same web page?
There are a lot of Jquery plugins and libraries. and sometimes I want to use more than one in the same web page.
What is the best approach to use them without effecting the speed and performance of ...
0
votes
1answer
16 views
Is it possible to use EJB2.1 and EJB 3.1 in the same project
We have an old project written with EJB 2.1. Now we need to extend the project with the new requirements. But i don't want to use the old complicated EJB 2 again.
Is it possible to use EJB3.1/JPA in ...
0
votes
0answers
27 views
How to start a 64 bit application from a 32 bit application?
on a 64 bit platform, we have a 32bit service (that we can't build in 64 bit for reasons I won't explain here).
This service calls System.Diagnostics.ProcessStartInfo with UseShellExecute to start ...
0
votes
1answer
93 views
mixing c and c++
I have couple of questions that about mixing code:
a complete project based on c, if I wanna use a c++ library, then I create a wrapper around it with pure c code,then build that shared library, do ...
0
votes
0answers
72 views
Java mix aiff audio files
in Java, I have to AIFFs, and, sure enough, for each of them an AudioInputStream object.
What I wonder: how can I mix these files into a new AIFF, or, to be more precise, how can I sum their ...
0
votes
0answers
92 views
How to mix two mp3 file into one file in vb.net
I have 2 mp3 file and I need to mix them together (not to add one file to the end of the other file - mix one in the other and have only one file in the same length)
I am new in VB.NET and ...
0
votes
0answers
49 views
Install mvn in service mix could not be resolved
I want to install a service to service Mix using syntax:
smx@root>install mvn:id.co.ess/endpoint-ptr04
java.lang.RuntimeException: URL [mvn:id.co.ess/endpoint-ptr04] could not be resolved.
What's ...
0
votes
0answers
158 views
Java - Mixing audio files generates unwanted white noise
Recently, I've been experimenting with mixing AudioInputStreams together. After reading this post, or more importantly Jason Olson's answer, I came up with this code:
private static AudioInputStream ...
0
votes
0answers
109 views
is it possible to integrate php pages with jsp pages?
I have an older website(an ajax-php shopping cart as the main functionality).
I'm now working with java and jsps. I was wondering if i can mix together these 2 technologies, as i want to add modules ...
0
votes
1answer
235 views
Programmatically creating an ios genius playlist
I'm looking for a way to create programmatically a genius playlist based on a random song.
Something like:
1.- pick a random song from ipod library
2.- query genius for 25 songs related to the random ...
0
votes
1answer
117 views
Matlab: Mix Input vector
Hey there,
is there any way to 'mix up' the order of the elements of an input vector in matlab randomly? Say I input
[1:5]'
I wanna get out for example:
[3 5 1 2 4]'
thanks!
0
votes
1answer
33 views
Mixing MATCH AGAINST with JOINO in MySQL
Is it possible to expand this query
SELECT id, name, MATCH (name) AGAINST (%s)
AS score FROM mydb.authors WHERE MATCH (name) AGAINST (%s)
by following one?
SELECT authors.id, papers.id FROM ...
0
votes
0answers
151 views
mysql error illegal mix of collation while creating view
I am trying create one view which is based on another view...but while creating a view.....I am getting an error of illegal mix of collation.....
While setting up MySQL server I have selected ...
0
votes
1answer
332 views
mysql: Illegal mix of collations in a store procedure problem
I get this error: Illegal mix of collations (greek_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation '=' when I call this store procedure of mine:
DELIMITER //
CREATE PROCEDURE ...
0
votes
0answers
218 views
SoX not mixing audio files
Hello everyone and sorry for my poor english in advance,
i have SoX installed on server (CentOS) with mp3 support by host admin
and i've got a PHP script calling the system function like this :
...
0
votes
2answers
59 views
any method to mix these urls in django
the usl :
(r'^account/', include('account.urls')),
(r'^account/', include('django_authopenid.urls')),
i want to use these url , and i dont want to mix it by my hand one by one , it is not very ...
0
votes
2answers
129 views
Mixing different models in one list in a view
I have three models: paste, snippet and tutorial. I want to show the newest of all of them mixed in one list, like this on the page:
<ul>
<li>Just a paste</li>
<li>The worst ...
0
votes
2answers
222 views
PHP & HTMl Mix in a PHP $Var
Mixing html and php is simple:
<? while($row): ?>
<p><?=$row['name'] ?></p>
<?php endwhile; ?>
But how could i store html like this into a php variable? (Purposed ...
0
votes
1answer
129 views
Has anyone used the Glimmer tool from MIX labs, what is the general opinion?
Mix Labs have released the Glimmer app, an IDE for making fancy effects with jQuery. I downloaded it & I've done a few things with it. I think it's quite nifty, but I'm not sure I'd use it 'in ...
-1
votes
1answer
123 views
How to mix php and C++ for user authenication?
Hello i'm making a program to get the names of users on my website and use that log for my programs so only registered people can login. How would I go about doing this?