remove

Remove Server Response Header IIS7

Is there any way to remove "Server" response header from IIS7? There are some articles showing that using HttpModules we can achieve the same thing. This will be helpful if we don't have admin right to server. Also I don't want to write ISAPI filter. I have admin rights to my server. So I don't want to do the above stuff. So, please hel...

How to remove USB drive using C#

I'm trying to write an application to remove USB Drives, but i can't find a way to do it. There's a .NET class to do this or it's possible using the Win32 API? All advises are welcome, thanks for the help. ...

javascript tables

I'm having an issue with looping through a table in javascript and getting the text from the first cell of a row. I want to get the text of this cell so that I can compare it with something else and remove the row if the text matches. When I try to get the text though, all that actually comes out is "[object text]". Can anyone tell me ...

PHP Remove First Two Words From String

Hi all, I have a string: $string = "R 124 This is my message"; At times, the string may change, such as: $string = "R 1345255 This is another message"; Using PHP, what's the best way to remove the first two "words" (e.g., the initial "R" and then the subsequent numbers)? Thanks for the help! ...

Java: Comparing two string arrays and removing elements that exist in both arrays.

Hello all, This is mainly a performance questions. I have a master list of all users existing in a String array AllUids. I also have a list of all end dated users existing in a String array EndUids. I am working in Java and my goal is to remove any users that exist in the end dated array from the master list AllUids. I know PHP has a f...

Java: Collection RemoveAll Ignoring Case?

Ok so here is my issue. I have to HashSet's, I use the Removeall method to delete values that exist in one set from the other. Prior to calling the method, I obviously add the values to the Sets. I call .toUpperCase() on each String before adding because the values are of different cases in both lists. There is no rhyme or reason to th...

Beautiful way to remove GET-variables with PHP?

I have a string with a full URL including GET variables. Which is the best way to remove the GET variables? Is there a nice way to remove just one of them? This is a code that works but is not very beautiful (I think): $current_url = explode('?', $current_url); echo $current_url[0]; The code above just removes all the GET variables. ...

Mysql: Programmatically remove all foreign keys

I'm working with a bit of a dodgey database at the moment, there are foreign keys defined in all the wrong places all over the place, I'd like to remove them all and then start from scratch. I don't wish to remove the column, just the foreign key relationships. How can I remove all foreign keys from an entire database? (Or table by tabl...

Jquery .remove() undo?

Is there any way to achieve this? I am using a pagination plugin that reads the number of li's inside my ul and determines the number of numbered links to spit out. ...

Excel password removal

We receive Excel workbook files every day which are password protected with the same password. We know this password. Is there a utility or method to remove password protection on these workbook files without invoking Excel.exe or the Excel object. Our goal is to take Excel out of the process and utilize SpreadsheetGear in VB.net. Ho...

Jquery empty() div except for matched elements

Is there a way to empty a div leaving only elements with a specific class name? Or, is there a way to remove all elements within a div leaving only elements with a specified class? ...

How do I git rm a file without deleting it from disk?

The command removes the file in my system. I meant it to remove only the file from Git-repository. How can I remove the file from a Git repository, without removing the file in my system? ...

iphone - UIActivityIndicatorView doesnt stop animating.

I have a UIActivityIndicatorView that displays with a message to indicate to the user that the next view is loading when the user switches views or is directed to another view on say a button click. I have added the UIActivityIndicatorView so that the data that im fetching to be displayed in the current view from an api can complete befo...

Removal after some Iterations: yes | rm -r .git

I need to kill the "yes" command after some iterations, two methods: a) kill it b) give "n" as an input after some time How would you automate the removal of .git directory? ...

Unload embedded video in flash AS3 (skip intro style)

Here's the scenario: i've created an external.swf that contains an embedded video (FLV) in the timeline. i've created another swf file (player.swf) that loads the external.swf using this: var request:URLRequest = new URLRequest("external.swf"); var loader:Loader = new Loader(); loader.load(request); videoContainer_mc.addChild(loader);...

Removing strings from C source code

Can anyone point me to a program that strips off strings from C source code? Example #include <stdio.h> static const char *place = "world"; char * multiline_str = "one \ two \ three\n"; int main(int argc, char *argv[]) { printf("Hello %s\n", place); printf("The previous line says \"Hello %s\"\n", place); return 0...

Remove elements as you traverse a list in Python

In Java I can do by using an Iterator and then using the .remove() method of the iterator to remove the last element returned by the iterator, like this: import java.util.*; public class ConcurrentMod { public static void main(String[] args) { List<String> colors = new ArrayList<String>(Arrays.asList("red", "green", "blue",...

Strip all punctuation from a string in VB.net

The title says it all. How do I strip all punctuation from a string in vb.net? I really do not want to do stringname.Replace("$", "") for every single bit of punctuation, though it would work. How do i do this quickly and efficiently? Other than coding something that codes this for me.... ...

Remove line from big txtfile in Java

Hello, Does anybody know how to remove a line from a textfile. I'm looking for something else than u read and write line by line and skip the line you want te remove. For exemple: My File count 1346 lines and I want to remove line 520. Thanks, Martijn ...

Removing all the messages from MSMQ

I have a Nunit test which adds message into MSMQ. In the teardown of the NUnit i want to remove all the message from the queue. Is there a direct way to remove all the messages from the queue (some kind of refresh) ? ...