The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
20 views

Symfony2 Remove UTF-8 BOM from controller responses

While creating a "force download" action I discovered that ALL responses generated by the controller are including the UTF-8 BOM (). This is not relevant for regular pages, but for downloaded files ...
0
votes
0answers
16 views

How come an event is raised after removal?

In my program I create GridSplitters at runtime and add an eventhandler to them, like this: // Create GridSplitter gs = new GridSplitter(); Grid.SetRowSpan(gs, tileView.RowsCount); Grid.SetColumn(gs, ...
0
votes
1answer
27 views

Prevent Magento from editing content code?

I'm still fairly new to the magento CMS. I'm in the process of building some product pages for the company I'm working for, and when I add several lines of html code for a jquery plugin I installed ...
0
votes
0answers
35 views

What happens to existing users when an app is removed from the App Store [duplicate]

We have an app on the iOS app store. Due to some business negotiations we are having with another company, we are considering removing the app from the app store (it's not my choice and I don't have ...
1
vote
1answer
61 views

Trying to use PHP to remove a line of HTML

Im trying to remove "Click" out of the code after it has been used. I need it to work in the beginning but after the class="details" is used, i need the code removed. I figured I could use PHP for ...
0
votes
1answer
65 views

Remove row from tree table in Vaadin

I'm doing a project in Vaadin 7. In that I need to remove a row from Treetable. I even couldn't find any way to remove any row from the Treetable. I used removeItem(), But, can't get it done. can ...
0
votes
2answers
218 views

Removing ALL Duplicates Row in VBA

I am looking to find out how I can remove ALL duplicate rows (when duplicates exist in the first column) using a VBA macro. Currently Excel macros delete all duplicate instances EXCEPT for the first ...
0
votes
4answers
187 views

Remove item from second dropdown based on selection in First using Javascript

I have four dropdown, and I am manually filling them. Now I want to add a javacsript that when I select first dropdown option, then in the second third fourth dropdowns, that item or option can be ...
0
votes
1answer
42 views

Python list remove and iterating over a list

I am not understanding the behavior that Python is giving me in the following: >>> adj = gx.g.neighbors('v') >>> adj ['x', 'w'] >>> gx.d['x'] [13, 14, 'black', 'v'] ...
0
votes
1answer
15 views

Is it possible to implement multiple foldernames in an rm -rf query in osc Terminal

I am trying to delete certain subfolders in a directory. When using the following promt: cd to root of directory Y then (assuming the folder name is "X",): find . -name X -exec rm -rf {} \; Is ...
0
votes
1answer
52 views

how to remove all subfolders except ones with foldername X using Terminal [closed]

What is the best way to remove all subfolders except ones with folder name X and Y using Terminal.
0
votes
1answer
27 views

extracting subfolders with specific name from external hard drive using osx terminal.

I have a large data set located on an external hard drive. I need to extract only a certain set of data/subfolders. Each folder on the drive contains amongst others subfolders named X and Y. Only ...
0
votes
0answers
70 views

ios: uninstall/remove configuration profile programmatically (ios)

I would like to find a way to programmatically uninstall/ remove/ disable a configuration profile on ios iphone/ipad... I have an enterprise distribution license. The app is for in-house ...
0
votes
0answers
24 views

change download dropdown menu into list of links

I want to get rid of this drop down menu that displays 1 link at a time and just display all links in a list. This is the code I get when I inspect the element of the drop downlist menu <select ...
-1
votes
1answer
20 views

What third-party software can be used in removing programs? [closed]

What third-party software can be of best help in removing programs, unnecessary start-up items and icons that can slow down a PC?
0
votes
1answer
188 views

Remove preinstalled python from Mac OSX 10.8

I want to move to python 3.0 and therefore remove the default python 2.7 (2.6,2.5...) installation on my mac. Including all the installed packages, $PATH,... Does the python installer from python.org ...
0
votes
3answers
43 views

Removing elements from the beginning vs the end

In the Collection framework tutorials for the List interface, there is an interesting quote regarding performance of removal of elements from a List implementation: For many common List ...
-3
votes
4answers
86 views

How to remove words which ends with this words? [closed]

I want to remove words which ends with these strings hello_hi sorry_hr good_tt I want to remove words which ends with _tt,_hr. how to do it? is this is good way? String word = ...
2
votes
3answers
70 views

Remove tag from words after using postagger in java

I used Stanford's NLP postagger to tag the nouns,adjectives in my program. interest_NN bui_NNS ground_VBP avail_NN respond_NN detail_NN like_IN quickli_NNS ...
0
votes
1answer
93 views

Remove attribute content on model using Carrierwave and callback

I'm trying to remove file attributes from the model when an uploaded file is remove (using a checkboxe). The file is removed correctly, but not the attributes. Can someone help me? I don't want to ...
0
votes
3answers
91 views

Over 100 Malicious code embedded in my website [closed]

I found that in all(i mean all js files in every folder) javascript files on my website, there is a javascript code with an iframe pointing to an external website. When opening the website through ...
0
votes
0answers
30 views

Eclipse: Remove spaces from Content Assist autocompleted method call

In Eclipse, if you visit: Window -> Preferences -> Java -> Editor -> Content Assist you can select any .._method entry (such as public_method) to see it references an arguments variable ...
5
votes
3answers
315 views

Queues in Java allows removal of random element. is this bad?

Queue In Java provides FIFO data structure. Per what I learned, queues have some responsibility to adhere to first-in-first-out behavior. In other terms, you may not remove items from the middle of ...
0
votes
1answer
117 views

Removing duplicate strings from text file using RegEx

I would like to remove strings from a file that already existed in a line with less number suing RegEx(Note++). Example - 123 = 45, 789 = 321, 123 = 951 Should result in - 123 = 45, ...
0
votes
4answers
47 views

How to efficiently remove the first few chars of a row in text file?

Example of 2 rows in text file (abc.txt): PMIP_TSD_2012120323.csv:03/12/2012,22:51:53,CAU TACS,TS,PPT4I_TS22, AJAY,595959,P,Legal Exit,(6 0) AJAY,G1234567M,SERVICES P L,8401352W, ...
4
votes
1answer
368 views

Smooth removal of items within a custom listview

I wish to be able to remove items from a listview in a way that will animate both the removed item and the items beneath it, in a similar way shown for the layoutAnimations demo in the API demos. For ...
4
votes
1answer
159 views

Assigning randomly selecting and removing rows from a 2d matrix

I have a 35x2 matrix containing stimlui for a word memory experiment. With each run of my program I need to be randomly sampling 16 cells so that the experiment is always different. I have managed ...
0
votes
2answers
94 views

Is there a tool/utility to remove macros from C++ code? [closed]

I'm working on a large C++ project with several team members. One of the team members rewrote a large portion of our code and he used primarily macros for almost every line of his functions. This ...
1
vote
2answers
260 views

andengine removing collectable objects like Sprites

im developing a game using andangine and the tmx and body2d extensions. i create Objects(sprites) like coins an specific positions while creating my map. i use a contactlistener to check if the player ...
-1
votes
1answer
459 views

How To Remove Loke Toolbar in Crome [closed]

There is a Loke Toolbar in several browsers. This is, in my opinion, an annoying marketing tool that some people would call a virus or spyware. It is 'technical' not and that's why I think removal ...
3
votes
7answers
160 views

Removing last element of a list in Python fails

I'm trying to remove the last element of a list in Python: di = {"a": 3, "children": [{"b": 5}, {"c": 6}]} for el in di['children']: di['children'].remove(el) What I'd expect is print di {'a': ...
0
votes
1answer
1k views

Remove Item From Backbone Collection

I have the following code. Everything works perfectly, but I'm trying to figure out how to remove an item from the collection (note: I'm new to Backbone). I've checked out several other posts but I ...
-2
votes
1answer
67 views

hashmap remove complexity

So a lot of sources say the hashmap remove function is O(1), but I don't see how this could be unless a hashmap were backed by a linkedlist because list removals are O(n). Could someone explain?
0
votes
1answer
117 views

UIWebView redraw on rotate

I have implemented a UIWebView object into a custom UIView (TSAlertView). My UIWebView sits in the middle of the UIView, as a subview. When I rotate the iOS device screen, the UIWebView object ...
2
votes
2answers
102 views

Need to remove an image/link from my website

I have been tasked with updating a website. The website is hosted by dexone and they are kind enough (sarcasm) to place an ad at the bottom of all my pages linking back to their sales and services ...
0
votes
2answers
221 views

Remove all the svn files in all the macosx directories

I would like to run a command to remove all the .svn files in my macosx. Is it possible or is better to remove them just from directory by directory? How can i do that? thx
2
votes
3answers
137 views

Delete white space on exact position in php

I was just wondering how I could exactly remove white space or even character by row and position inside row. I can't find info about this but I think that the PHP trim() could help. Also I was ...
0
votes
1answer
183 views

Capture PACKAGE_REMOVED event with BroadcastReceiver

I want to capture the event when a package has been removed. I use the following: A BroadcastReceiver subclass: public class CustomBroadcastReceiver extends BroadcastReceiver { /** * This ...
0
votes
0answers
124 views

ask for client certificate when cac smart card is removed

i implemented a strong authentication with cac smart card on apache,tomcat and IIS 7.5 but the problem is when the client remove the smart card from the reader he still have full access to the server. ...
0
votes
0answers
98 views

Reporting Services 2008 Remove a value from a sum in expression

I'm sorry for my question title but i don't know how can i be very specific. I'm My problem is the following. I have this expression built in a graph: =iif(Fields!TIPO_RECURSO.VALUE <> "US", ...
0
votes
3answers
177 views

PHP cookie removal in FireFox 14.0.1

<?php session_start(); $_SESSION['logged_in'] = false; setcookie("dsgpassword127", $password, time()-3600); /* expire the cookie */ setcookie("dsgemail127", $email, time()-3600); /* expire ...
11
votes
2answers
1k views

Iframes and memory management in Javascript

I have links that load pages into iframes. I have been monitoring the accumulation of data in memory using Google Chrome's memory heap profiler and I noticed some leaks in memory. I loaded the page ...
1
vote
3answers
439 views

how to remove all files form a directory except a few ones?

i have a directory structure something like: /var/www/html/pictures/media0/01/test_01.jpg /var/www/html/pictures/media0/01/test_02.jpg /var/www/html/pictures/media0/01/test_03.jpg ...
1
vote
3answers
207 views

In Java, remove the first char of the string if it is , (comma)

In Java, I have a String variable. Sometimes the first character of the string is a comma , I want to remove the first char only if it is a comma. What is the best approach to do this?
1
vote
2answers
905 views

Binary Search Tree Removal

I am working on a Binary Search Tree for class and have most of my code implemented (i think) correctly, although if I attempt to delete the root node, nothing happens. Hoping someone here has some ...
0
votes
1answer
85 views

Srange result about wpf grid row removal

I have a question about grid removal: whenever I delete the last row or all rows in the grid, there is still something(actually the last row) displayed on the grid. I did actually checked the ...
0
votes
1answer
235 views

Need a tool to set multiple image backgrounds to transparent

I'm searching for a software/tool to set the image background (black) to transparent. An example: http://www.freewebs.com/blackwind12/sprite%20sheet%204.png I want to to remove all the black and ...
0
votes
1answer
40 views

Google result removal

I'm really sorry if I'm asking this in wrong place, but I was always wondering: Is there a way to ask google to remove a specific result/range of results/specific criteria(ex: My name) from their ...
3
votes
7answers
305 views

Bash: Remove series of strings in variable A from variable B?

I'm trying to do this, what is the most powerful way to attain this goal ? #!/bin/bash # Remove DOGS from CATSNDOGS to give CATS DOGS="fido rover oscar bowwow spike max" CATSNDOGS="bowwow figaro ...
2
votes
2answers
577 views

Hide maximize/minimize and close buttons for a Matlab figure window

I have a figure window and I want to remove the maximize/minimize and close buttons of it. I can not use any type of Java containers (JWindow, JPanel, ...) because they are not allowed to be Matlab ...

1 2