The tag has no wiki summary.

learn more… | top users | synonyms

100
votes
6answers
63k views

Git: removing selected commits from repository

I would like to remove selected commits from a linear commit tree, so that the commits do not show in the commit log. My commit tree looks something like: R--A--B--C--D--E--HEAD I would like to ...
57
votes
4answers
35k views

How do I remove objects from a javascript associative array?

Suppose I have this code: var myArray = new Object(); myArray["firstname"] = "Bob"; myArray["lastname"] = "Smith"; myArray["age"] = 25; Now if I wanted to remove "lastname"?....is there some ...
52
votes
1answer
8k views

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?
46
votes
8answers
36k views

C# using LINQ to remove objects within a List<T>

I have LINQ query such as: var authors = from x in authorsList where x.firstname == "Bob" select x; Given that authorsList is of type List, how can I delete any Author ...
20
votes
10answers
36k views

How do I remove repeated elements from ArrayList?

I have an ArrayList of Strings, and I want to remove repeated strings from it. How can I do this?
19
votes
6answers
6k views

Remove empty strings from a list of strings

I want to remove all empty strings from a list of strings in python. My idea looks like this: while '' in str_list: str_list.remove('') Is there any more pythonic way to do this?
16
votes
3answers
7k views

Xcode + remove all breakpoints

Is there any way to remove all the breakpoints in Xcode? Regards, Pratik
16
votes
6answers
5k views

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 ...
15
votes
4answers
5k views

How to hide the Dock icon

I want to make a preference for hiding the Dock icon and showing an NSStatusItem. I can create the StatusItem but I don't know how to remove the icon from Dock. :-/ Any ideas?
15
votes
4answers
17k views

JQuery delete DOM element after fading out

I want to delete an DOM element right after fading out. What I did so far is $(element).click(function() { $(this).fadeOut(500, function() { $().remove(this); }); }); But now I always get this ...
14
votes
6answers
3k views

jQuery - Trigger event when an element is removed from the DOM

I'm trying to figure out how to execute some js code when an element is removed from the page: jQuery('#some-element').remove(); // remove some element from the page /* need to figure out how to ...
14
votes
5answers
6k views

Remove Elements from a HashSet while Iterating

So, if I try to remove elements from a Java HashSet while iterating, I get a ConcurrentModificationException. What is the best way to remove a subset of the elements from a HashSet as in the ...
14
votes
9answers
10k views

How to remove duplicate values from an array in PHP

( can't believe this hasn't been asked in SO yet... ) How can I remove duplicate values from an array in PHP?
13
votes
14answers
62k views

Removing an element from an Array (Java)

Is there any fast (and nice looking) way to remove an element from an array in Java?
12
votes
3answers
754 views

Remove paper texture pattern from a photograph

I've scanned an old photo with paper texture pattern and I would like to remove the texture as much as possible without lowering the image quality. Is there a way, probably using Image Processing ...
12
votes
4answers
5k views

Removing multiple classes (jQuery)

Is there any better way to rewrite this: $('element').removeClass('class1').removeClass('class2'); Can't use removeClass(); as it would remove ALL classes, which I don't want. Thanks
11
votes
7answers
10k views

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 ...
11
votes
7answers
1k views

How can I identify and get rid of unused units in the “uses clause” in Delphi 7?

This should reduce the executable size quite a bit in some of my very large projects. I am sure there would be other benefits too. EDIT: Is there perhaps a utility that will scan the project and ...
10
votes
6answers
7k views

JavaScript: remove element by id

When removing an element with standard JavaScript, you must go to it's parent first: element = document.getElementById("element-id"); element.parentNode.removeChild(element); Having to go to the ...
10
votes
3answers
6k views

Remove item from jQuery object

jQuery makes it easy to remove nodes from the DOM. But how do you remove something from the jQuery object?
9
votes
12answers
2k views

How to efficiently (performance) remove many items from List in Java?

I have quite large List named items (>= 1,000,000 items) and some condition denoted by <cond> that selects items to be deleted and <cond> is true for many (maybe half) of items on my list. ...
9
votes
1answer
4k views

How to remove a lua table entry by its key?

I have a lua table that I use as a hashmap, ie with string keys : local map = { foo = 1, bar = 2 } I would like to "pop" an element of this table identified by its key. There is a table.remove() ...
9
votes
6answers
16k views

Remove carriage return in Unix

What is the simplest way to remove all the carriage returns /r from a file in Unix?
8
votes
2answers
545 views

Delphi. Remove a border of TabSheet of PageControl

Your help is needed. Is it possible to remove a border of TabSheet (~4px)? I am using PageControl as a switch-panel instead of frames, windows etc. I want everything will be straight. Big thanks for ...
8
votes
2answers
897 views

How do I account for gravity using a wiimote's accelerometer?

For a project my team and I have been trying to track a wiimote in a 3D space using the built in accelerometer and the WiiMotion Plus gyroscope. We’ve been able to track the rotation and position ...
8
votes
2answers
5k views

How can I remove duplicates in an array but keep the same order?

I have this cell array in MATLAB: y = { 'd' 'f' 'a' 'g' 'g' 'a' 'w' 'h'} I use unique(y) to get rid of the duplicates but it rearranges the strings in alphabetical order: >> unique(y) ans = ...
8
votes
6answers
2k views

Perl: How do I remove the first line of a file without reading and copying whole file

I do have a whole bunch of files in a directory and from every file I want to remove the first line (including carriage return). I can read the whole file into an array of strings and write all but ...
8
votes
4answers
559 views

Is it possible to remove all event handlers of a given element in javascript?

I would like to remove ALL handlers for a given event type. Let's say I've added twice "onclick event" to a button and now I would like to return back to the original state where no event handler was ...
8
votes
3answers
4k views

How to drop columns using Rails migration

What's the syntax for dropping a database table column through a Rails migration?
8
votes
4answers
2k views

Get rid of leading zeros for date strings in Python?

Is there a nimble way to get rid of leading zeros for date strings in Python? In the example below I'd like to get 12/1/2009 in return instead of 12/01/2009. I guess I could use regular expressions. ...
8
votes
9answers
3k views

Removing items from a collection in java while iterating over it

I want to be able to remove multiple elements from a set while I am iterating over it. Initially I hoped that iterators were smart enough for the naive solution below to work. Set<SomeClass> ...
8
votes
5answers
5k views

MySQL remove duplicates from big database quick

I've got big (>Mil rows) MySQL database messed up by duplicates. I think it could be from 1/4 to 1/2 of the whole db filled with them. I need to get rid of them quick (i mean query execution time). ...
7
votes
2answers
132 views

remove all variables except functions

I have loaded in a R console different type of objects. I can remove them all using rm(list=ls()) or remove only the functions (but not the variables) using rm(list=lsf.str()) My question is: is ...
7
votes
3answers
290 views

REGEXP_REPLACE - remove commas from string ONLY if enclosed in ()'s

I find an example at oracle forum site : Input string : a, b, c (x, y, z), a, (xx, yy, zz), x, WITH t AS (SELECT 'a, b, c (x, y, z), a, (xx, yy, zz), x,' col1 FROM dual) SELECT t.col1 , ...
7
votes
3answers
221 views

Removing the prologue of a function written in pure assembly

I am using Delphi 2010. Is it possible to tell Delphi to not generate a prologue for a function? I'm writing some pure assembly functions like this: procedure SomeAssembly; stdcall; begin asm ...
7
votes
2answers
121 views

What is the “best practice” to remove support for a feature?

I have a library that deals with several message formats. Each of these formats is closely related, they're a common base XML then each has some additional constraints or extra data on top of it. One ...
7
votes
2answers
2k views

In IntelliJ on OS X, how do you clear out all global setting info, licensing etc. (external to any project)

I am having some low level issues with IntelliJ on my mac, I really want to just zero everything out and start over. But even after removing the application and re-installing it, IntelliJ still ...
7
votes
1answer
991 views

How to remove whitespace from XElement object created from XElement.ReadFrom(XmlReader)

I am parsing a large xml file. So I am using an XmlReader in combination with XElement instead of XElement.Load(). I have created as XElement object from XmlReader as shown below and here. static ...
7
votes
4answers
3k views

Cookie is not deleted

I am using the following code to set a cookie in my asp.net mvc(C#) application: public static void SetValue(string key, string value, DateTime expires) { var httpContext = new ...
7
votes
1answer
2k views

What is the difference between REMOVE and DELETE?

Is there a difference between : @Cascade(org.hibernate.annotations.CascadeType.REMOVE) and @Cascade(org.hibernate.annotations.CascadeType.DELETE) ?
7
votes
4answers
3k views

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 ...
7
votes
7answers
2k views

How to remove files starting with double hyphen?

I have some files on my Unix machine that start with -- e.g. --testings.html If I try to remove it I get the following error: cb0$ rm --testings.html rm: illegal option -- - usage: rm [-f | -i] ...
6
votes
7answers
138 views

Removing Duplicates From Dictionary

I have the following Python 2.7 dictionary data structure (I do not control source data - comes from another system as is): {112762853378: {'dst': ['10.121.4.136'], 'src': ['1.2.3.4'], ...
6
votes
3answers
111 views

How can I remove elements from a QList while iterating over it using foreach?

I'm new to Qt and trying to learn the idioms. The foreach documentation says: Qt automatically takes a copy of the container when it enters a foreach loop. If you modify the container as you are ...
6
votes
2answers
142 views

what does it mean when java.util.Iterator.remove() method is 'optional operation'?

I was trying to filter specific elements from an Iterator object, and I can remove the false elements via iterator.remove() method. Here is my method stub: private static Iterator<A> ...
6
votes
3answers
183 views

Javascript (jQuery) remove last sentence of long text

I'm looking for a javascript function that is smart enough to remove the last sentence of a long chunk of text (one paragraph actually). Some example text to show the complexity: <p>Blabla, ...
6
votes
6answers
121 views

Removing an element from a list with only its iterator

Is it possible to remove an element from an std::list if you have only the iterator that points to the element you want to remove? I have a large amount of functions that take iterators to list ...
6
votes
1answer
245 views

Scala: why remove is deprecated in favor of filterNot?

scala> List(1, 2, 3) remove (_ < 2) <console>:8: warning: method remove in class List is deprecated: use `filterNot' instead List(1, 2, 3) remove (_ < 2) ^ ...
6
votes
2answers
303 views

Breakout Game in Java does not pass boolean value after calling remove() method

I have been following the CS106A lectures online and doing the assignments. I've been stuck for a few days though on the breakout game because I cannot understand it's behavior. Basically, I have ...
6
votes
2answers
961 views

MongoDB data remove - reclaim diskspace

My understanding is that on delete operations MongoDB won't free up the disk space but would resuse it as needed. 1. Is that correct? 2. If not, would I have run a repair command? 3. Could the ...

1 2 3 4 5 26