What is the best/easiest way to bind a repeater for a specified number of times, so for example if my list has 10 items and I just want to bind the first 2 items (using C#).
Hi, I am interesting any kind of anti spam/scam fiter for instant messages (even commercial solutions) in my case jabber server in dating area.
I found open source project dscam, but cannot be sure that is best solution.
Any help is welcome.
Thanks.
What is the best method of performing an scp transfer via the Java programming language? It seems I may be able to perform this via JSSE, JSch or the bouncy castle java libraries. None of these solutions seem to have an easy answer.
I'm using a custom pixel font on the iPad SDK, and I'm trying to find a way to disable font anti-aliasing for UIFont. Pixel fonts usually work best when they don't have Anti-aliasing. I disable it easily in Photoshop when I create static resources, but this time I need a dynamic output with the custom font.
Any ideas?
Thanks.
I wrote code in android for connecting to server with ssl, I use BKS algorithm, I can create socket but when I send data to switch, I get this error
javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
It is wonderful for me, I can connect to another server in local network with another BKS file and I can get response from that server, but with correct certificate in outside network, I cannot connect to another server, is it possible with network problem?
Best regards
Hi guys,
I have a ratingbar in my app, and I would like when I pass the mouse over it, the rating changes
How can I do that ? it's possible?
best regards
What's the best way to generate a number X of random binary vectors of size N with concentration of 1s (or, simmetrically, of 0s) that spans from very low to very high?
Using randint or unidrnd (as in this question) will generate binary vectors with uniform distributions, which is not what I need in this case.
Any help appreciated!
Hallo,
I need to send a request to a page (POST) and then, I will read the XML and take the logical action.
How can I best send from my PHP request and then read the response.
Thnkas.
New to django and trying to setup django-registration 0.8 with recaptcha-client. I followed the advice posted in the answer to this question.
I used the custom form and custom backend from that post and the widget and field from this tutorial. My form is displaying properly with the recaptcha widget but when I submit it throws the error about the missing IP. What's the best way to pass the IP using django-registration?
I have to register multiple assemblies to GAC using InstallSheild and also I need the assemblies to be copied on the INSTALLDIR also. What's the best way to do it? Also I need to call regasm.exe for an assembly; can I do this using InstallShield?
I really need a new 'component' for each assembly that has to be registered in GAC?
Is there a way to find out the memory usage of each dll within a c# application using com dll's? Or what would you say is the best way to find out why memory grows exponentially when using a com object (IE. Whether the COM object has a memory leak, or whether some special freeing up of objects passed to managed code has to occur(and/or how to do that)).
Hi,
Does anyone know what is the best way to create one row matrix (vector) from M x N matrix by putting all rows, from 1 to M, of the original matrix into first row of new matrix the following way:
A = [row1; row2, ..., rowM]
B = [row1, row2, ..., rowM]
Example:
A = [1 1 0 0; 0 1 0 1]
B = [1 1 0 0 0 1 0 1]
I would be very thankful if anyone suggested any simple method or perhaps points out a function if it already exists that could generate matrix B from original matrix A.
Is there a way to make a web robot like websiteoutlook.com does? I need something that searches the internet for URLs only...I don't need links, descriptions, etc.
What is the best way to do this without getting too technical? I guess it could even be a cronjob that runs a PHP script grabbing URLs from Google, or is there a better way?
A simple example or a link to more information would be much appreciated.
Hi there,
I am coding in ASP.NET C#.
I have Microsoft Dynamics GP hosted at a server and my database hosted at another server.
I would like the GP database take value from some table there and synchronise it with my database. Which is the best alternative?
Data transmission Service(DTS)?
Hello,
I've got a Problem with ArrayList. I need it to store a result. Because I want to start with element n I tryed to give the ArrayList a capacity with ensureCapacity(n+1) to use set(n,x) but I get an IndexOutOfBoundsException.
I tryed to store n add(x) before the use of set and this works.
So I'd like to know why it doesn't work on my way and how to solve this because put n times a add(x) isn't a good style ;-)
Best regards,
Sebastian
What's the best dedicated search-and-replace GUI tool on a Mac? "Find & Replace It!" seems decent, but they've ridiculously disabled the replace function in the demo, so I can't give it a real test before paying. Is there anything else comparable or better?
What is the best optimized way to convert table base design to table less design? the layout should be cross browser compatible and SEO Friendly. Is there any tool/editor which converts existing table base design to table less design?
Is there any option in dreamweaver to convert the design in tableless?
I know soft shadows are not supported by the UILabel our of the box, on the iPhone. So what would be the best way to implement my own one?
EDIT: Obviously I will subclass the UILabel and draw in the -drawRect:
My question is, how do I get the contents of the label as graphics and draw around them, blur them etc...
I love WinSCP for Windows. What are the best equivalent softwares for linux?
I tried to use sshfs to mount the remote file system on my local machine, but it is not as user friendly as simply launching a GUI, plus it seems to require root access on the client machine, which is not very convenient.
Of course command line tools such as scp are possible, but I am looking for a simple GUI.
Thanks!
I want to determine the best javascript framework to use in order to maintain IE 6 compatibility.
Specifically I want to know which is better for IE6 - Dojo or JQuery.
Are there any benchmarks for the various javascript frameworks that quantify the work you would have to do to maintain IE6 compatibility?
The jQuery.getJSON() method seems to ignore the normal rules of scoping within JavaScript.
Given code such as this...
someObject = {
someMethod: function(){
var foo;
$.getJSON('http://www.somewhere.com/some_resource', function(data){
foo = data.bar;
});
alert(foo); // undefined
}
}
someObject.someMethod();
Is there a best practice for accessing the value of the variable outside of the getJSON scope?
How do replace Every UpperCase Letter with Underscore and the Letter in C#?
note: unless the character is already proceeded by a underscore.
Is Regex the best approach? Where do I start with this one?