To create a test email server, I have a similar requirement as:
http://serverfault.com/questions/94640/how-to-redirect-all-outgoing-email-from-postfix-to-a-single-address-for-testing
But I need to send all the emails to an external account, not a local one.
I would like to do something like:
xyz:[email protected]
but xyz is not local nor smtp.
I use Band-in-a-box ("BIAB") to create backing tracks to practice my guitar-playing, and keep the source files (filetype .MGU) created by BIAB in the same folder as the MP3 files derived from them. Because I share this folder with colleagues via Dropbox, I'm not in a position to move the .MGU files elsewhere.
Every time I start Rhythmbox ("RB") it checks my music folders, and reports "Import Errors" on all the .MGU files.
RB apparently ignores a number of unplayable filetypes in music folders - is there a way of adding .MGU to this group?
I know I can just ignore the Import Errors, but one of these days there will be an error I would have wanted to know about.
OK, so this seems like a really simply problem, but I have yet to find a solution that accomplishes the following:
Opens the link in a new window
Tracks the event in GA (obviously)
Doesn't trigger pop-up blockers (uses target="_blank" instead of window.open)
Most of the code I've seen, including Google's, doesn't take into account the case of opening in a new window - they just window location.href.
Even GAAddons (http://gaaddons.com/), which charges for commercial use, doesn't seem to work for me.
Perhaps, I'm missing something simple - I'd be relieved if so and would thank profusely whoever points it out to me!
If no one is able to provide an example, I'll post some of the test cases I've created to illustrate the problem.
Thanks.
My company is a broker in the real estate industry. As such, we send a lot of our listings to sites like Trulia.com and Zillow.com, among others. These sites direct leads to our realtors, and provide us with reports every month detailing the activity our listings have had on their site-- links back to our website, emails generated, etc.
Our Marketing and Advertising departments want to take that information and enter it into a system to keep track of everything in one place, for the purpose of producing comparison reports.
I cannot find any externally available product that provides this functionality. I would sincerely like to avoid writing this tool myself. Does anyone know of a tool that could do this?
In short, an ideal system would:
Imports Google Analytics data via API
Imports real estate listing site data via CSV import / manual entry
Provides comparison reports based on data
Does anyone know of anything pre-made that can do this?
My laptop's video card is dead, and while the Apple store says they'll give me a replacement, I'd like to grab some things from my hard drive before I take it in. Is there some way I could connect my laptop to my desktop and use the hard drive as an external just to pull some files off?
I tried dompdf. Its a lot easier than the other libraries but it doesnt have unicode support. Well it has unicode support but requires another library calld PDFLib ($1k version).
so just wondering if anybodies ever stumbled upon or used any PHP pdf library which is easy to use and has unicode support.
thanks,
I'm referencing a WiX extension in a WiX library project. This WiX library project is itself referenced by my main WiX MSI project. Why does the main project have to also reference the WiX extension, even though it doesn't directly need it?
I'd like to keep my wixlib's as self-contained as possible, so that other projects that use them don't need to know about their inner workings.
I'm using latest stable release of WiX (3.0.x).
My directory structure looks like the following:
-xmllib
-libxml++-1.0.a
-main.cc
..and I issue the command:
cc -lstdc++ -L./xmllib -llibxml++-1.0.a main.cc
But then it tells me that it can't find the binary for the library...even though I issued the command from the root directory.
/usr/bin/ld: cannot find -llibxml++-1.0.a main.cc
collect2: ld returned 1 exit status
Is there any reason why cc can't find the binary library?
I'm using cc version 2.96 (yes, it's old).
Hi all
I've got a web app solution containing a class library project.
Whenever I rebuild the class library and then refresh the page, it takes ages the first time, and is then quick again subsequently.
It's almost as if the newly rebuilt dll is having to 'bed in' to the app.
Can anyone tell me what's really going on behind the scenes?
Thanks
David
I'm looking for a JSP Tag library that can generate a embed tag for flash application. I googled it but didn't find the resource for doing the same.Is it possible to generate embed tag using jsp tag library?
I know of NLTK. What else is there that complements this library? Or can do AI?
NLTK is great because I can learn it with the book that it came out.
Is there a library for AI just like this?
What is a good PHP payment library that works with Paypal, Google Checkout and Authorize.net?
I did find this library but it is not maintained and doesn't offer Google Checkout. Is there other options such as a service that can handle those three or more gateways?
any PHP or Ruby library to convert Tranditional Chinese to Simplified Chinese or vice versa (Big5 <-- GB)? the iconv library won't do it as it merely convert the encoding -- the glyph stays the same.
Tell me how to create a custom workflow in sharepoint designer 2010 to move a document/item in one document library(say "Proposals") to another document library(say "Approved") after the document/item gets approved.
There are two main open source .net Amazon S3 libraries.
Three Sharp
LitS3
I am currently using LitS3 in our MVC demo project, but there is some criticism about it. Has anyone here used both libraries so they can give an objective point of view.
Below some sample calls using LitS3:
On demo controller:
private S3Service s3 = new S3Service()
{
AccessKeyID = "Thekey",
SecretAccessKey = "testing"
};
public ActionResult Index()
{
ViewData["Message"] = "Welcome to ASP.NET MVC!";
return View("Index",s3.GetAllBuckets());
}
On demo view:
<% foreach (var item in Model)
{ %>
<p>
<%= Html.Encode(item.Name) %>
</p>
<% } %>
EDIT 1:
Since I have to keep moving and there is no clear indication of what library is more effective and kept more up to date, I have implemented a repository pattern with an interface that will allow me to change library if I need to in the future. Below is a section of the S3Repository that I have created and will let me change libraries in case I need to:
using LitS3;
namespace S3Helper.Models
{
public class S3Repository : IS3Repository
{
private S3Service _repository;
#region IS3Repository Members
public IQueryable<Bucket> FindAllBuckets()
{
return _repository.GetAllBuckets().AsQueryable();
}
public IQueryable<ListEntry> FindAllObjects(string BucketName)
{
return _repository.ListAllObjects(BucketName).AsQueryable();
}
#endregion
If you have any information about this question please let me know in a comment, and I will get back and edit the question.
EDIT 2:
Since this question is not getting attention, I integrated both libraries in my web app to see the differences in design, I know this is probably a waist of time, but I really want a good long run solution. Below you will see two samples of the same action with the two libraries, maybe this will motivate some of you to let me know your thoughts.
WITH THREE SHARP LIBRARY:
public IQueryable<T> FindAllBuckets<T>()
{
List<string> list = new List<string>();
using (BucketListRequest request = new BucketListRequest(null))
using (BucketListResponse response = service.BucketList(request))
{
XmlDocument bucketXml = response.StreamResponseToXmlDocument();
XmlNodeList buckets = bucketXml.SelectNodes("//*[local-name()='Name']");
foreach (XmlNode bucket in buckets)
{
list.Add(bucket.InnerXml);
}
}
return list.Cast<T>().AsQueryable();
}
WITH LITS3 LIBRARY:
public IQueryable<T> FindAllBuckets<T>()
{
return _repository.GetAllBuckets()
.Cast<T>()
.AsQueryable();
}
Hi,
I have an EF project which has embedded connection details.
Then when I use this project from a client library I get told to copy the config file across, which includes the connection details.
What are the rules re which connection string would be used here? i.e. does the database connection string in the client project override any connection strings in the EF library project?
I'm looking for a good general library to grab localized labels for displaying on a web page. I've found some useful solutions at http://stackoverflow.com/questions/19295/database-backed-i18n-for-java-web-app and I will use them but I wanted to see if there was a standard library other than the fmt jstl tags that is already database backed.
I'd like to use the Tapku library to add a calander date picker control to my iPad app. I'm new to iPhone OS development and I'm still rusty on identifying the 3rd party tools and code that will get my iPad app denied from the app store. For those that have used the Tapku library, would using it in my iPad app violate any app store rules?
Thanks so much in advance for your help. I'm going to continue researching this question right now.
Hi,
Can I use .net 3.5 binaries for a library with a .net 4.0 application / what are the negatives if any? In other words is there any reason I should take more time out to download source for the library and build it under .net 4.0 (assuming it builds without any problems I guess) as opposed to downloading the .net 3.5 binaries.
I'm using C# in VS2010.
thanks
Hi, I was wondering if some of you know about a library in php so that I can pass a date and a cron expression and it tells me wether the date satisfies the cron expression or not. The java Quartz library is able to do that (and more like getting the next valid date for a given cron expression) but I was wondering if this is possible using php.
Thank you!
Say I have a web component that uses jQuery and I want to distribute it as a packaged component.
I need a way to ensure that the jQuery library is available on or after the page loads, but I also want to check that the containing html page, or another unknown component that may reference jQuery hasn't already added the library to the page.
At the moment the best example I've seen is this
http://www.squidoo.com/load-jQuery-dynamically
It would need a little tweaking, but I was wondering if there were any other best practices.