Tagged Questions
The removal tag has no wiki summary.
9
votes
5answers
608 views
Tools to detect Dead code in delphi2007 or above
Are there good tools to detect dead code in DELPHI2007 or above? That can integrate with the IDE?
The option to look at blue dots is just time consuming, so it’s ruled out.
6
votes
2answers
2k views
How to remove widget when the app is uninstalled in Android?
In Android, I have created a widget for my application. When I uninstall the app, the widget shows "problem loading widget" error in home screen. I need a scenario where widget should be removed by ...
3
votes
4answers
165 views
How to remove quotes from a string in C
I am trying to remove all quotes in a given line except a backslash followed by a quote
what I have done is this
for (int i = 0; i < lineLength; i ++) {
if (line[i] == '"' ) {
...
3
votes
3answers
68 views
Mark File For Removal from Python?
In one of my scripts, I need to delete a file that could be in use at the time. I know that I can't remove the file that is in use until it isn't anymore, but I also know that I can mark the file for ...
2
votes
2answers
67 views
How to block flash elements in the web browser control
I building a C# application with a WebBrowser control in it and and I am trying to figure out a way to get the flash content within the web page to not display as it is sucking up a ton of my CPU and ...
2
votes
1answer
303 views
Removing Left Recursion with Terminals
How do I remove left recursion on the following rule:
S -> aSAbb | aA
I understand how to perform it on S -> SA | A
which becomes S -> A | AS'; S' -> A | AS', but the terminals throw me off in this ...
2
votes
2answers
631 views
Suggestion for FullCalendar event removal UI
I have my fullCalendar functioning well, however, I need to allow the users to remove events from the calendar. I can use the clickEvent method to bring up a confirmation window with a "do you want ...
2
votes
1answer
301 views
Remove HTML tags from string (R Programming)
Is there an easy way to remove HTML tags from a character string in R?
Currently I'm extracting out survey data from an XML document and for the title of the question have HTML from the survey design ...
2
votes
3answers
289 views
One pass multiple whitespace replace to single whitespace and eliminate leading and trailing whitespaces
void RemoveSpace(char *String)
{
int i=0,y=0;
int leading=0;
for(i=0,y=0;String[i]!='\0';i++,y++)
{
String[y]=String[i]; // let us copy the current character.
...
1
vote
0answers
24 views
Efficient object-space hidden surface removal
I have the following problem: I need to generate 2d views of a 3d model. Under normal cicrcumstances this would of course be trivial: just render everything to the screen using the painter's algorithm ...
1
vote
4answers
50 views
Numeric pre tags removal with Jquery
Is there any way to remove the pre tags which covered numeric using Jquery?
For example, I have the following content :
<pre>1000</pre>
I need to remove the PRE tags using Jquery..
...
1
vote
2answers
95 views
how is the linked list actually being changed
i was wondering if anyone could help me with this question. i believe i understand the code and logic for the most part. i can trace code and it makes sense, but one thing i don't get is....how does ...
1
vote
3answers
161 views
Mass storage device removal policy
I'm working on a hardware device that exposes itself as a Mass Storage device over USB.
When I plug in a typical USB key it gets attached in device manager as a Mass Storage device with the ...
1
vote
3answers
379 views
jquery remove dropdown options performance issue
Ok..I need to know the fastest way to remove hundreds of options from a dropdown list.
Right now, Firefox is really slow at updating my 2nd drop down dynamic list.
Chrome is doing OK with the script ...
1
vote
1answer
47 views
Why keep 'previous' while deleting duplicates in linked list?
i was wondering if anyone could explain what is the purpose of using the 'LinkedListNode previous' variable. i understand the general idea of trying to remove the duplicate. you look through the ...
1
vote
2answers
151 views
How to remove all comments (single line --) from code
We are dealing with long texts of code in PL/SQL and often we find that the code volume has increased just due to unneccassy comments. Most of them are single line style comments.
How do I write a ...
1
vote
1answer
369 views
How do I remove options from a dropdownlist in javascript?
Are there any examples out there that will allow me to remove options from drop down list using JavaScript?
Here is the code:
<select autocomplete="off" id="sSec1" tabindex="0" name="sSec1" ...
1
vote
2answers
66 views
How to remove some functionality from a Rails application
I have a rails application in which I implemented some feature. Now I want to remove that feature without breaking the code. Since the application is running on the production server, this makes it a ...
1
vote
2answers
125 views
Unable to make Git ask about removal of deleted files
Assume you have a file which has been committed in your Git repo.
You remove the file simply by
rm file
The removed file remains in your Git repo although you do not have it.
My old Git ...
1
vote
2answers
153 views
Anyone know of a javascript removal tool for html
I am having issues with an Ebay template, if I try to upload it get's kicked back to me saying that it cannot contain javascript, I'm assuming that it's in the picture rollover option (mouseover pic ...
0
votes
0answers
29 views
Mac OSX and .txt/rftd/rft parsing
I am trying to run a script to help with manual tasks I perform everyday.
The first part of the script pulls articles from a source and saves all articles in a .txt file.
Once the word are in the ...
0
votes
1answer
14 views
.INF files, any way to take pre-removal actions?
It is wanted to catch a driver removal event within .INF (by having it to call custom dll/exe via some directive), neither by driver itself nor by userspace watchdog application.
Any hints on that?
...
0
votes
0answers
54 views
Android: How do I inject this Javascript code into my WebView?
Having almost no exposure to Javascript I would like to seek help on how to inject a particular piece of code into my WebView in my Android app.
This is the code I need to inject
"
function ...
0
votes
2answers
45 views
Doxygen: Creating a specialised page
I finally figured out how to use deprecated to mark functions as going away. What I'd like to generate is an additional page listed on "Related Pages" (much like GENERATE_DEPRECATED does) that allows ...
0
votes
2answers
188 views
How can I uninstall or delete Windows XP Sp3 Games using C# or free XP tools?
I am actually able to delete the files, but the system restores them almost immediately. I have been unsuccessful in using sysocmgr.exe to remove games from systems and would like to do it via code ...
0
votes
1answer
222 views
removing <dc:creator> from wordpress feed
I am using Wordpress 3.1 locally on my computer. I have been trying to remove the <dc:creator></dc:creator> from my wordpress RSS feed. I removed the tag in the following files:
...
0
votes
1answer
181 views
Programmatically Interrupting Serial I/O when USB Device is Removed - C++
I have an application wherein serial I/O is conducted with an attached USB device via a virtual COM port. When surprise removal of the device is detected, what would be the best way to stop the ...
0
votes
2answers
349 views
Removing Left Recursion in a Context Free Grammar
Trying to figure out removing left recursion in context free grammars. I'm used to certain forms, but this one has me a bit boggled.
S --> S {S} S | (A) | a
A --> {S} A | epsilon
I also have ...
0
votes
3answers
125 views
Removing a word from a <p> only using css
Due to mod rights on a site, I can only add css (no js etc...). When users input text in a comment box, it saves it and then displays it as a <p>. is there any way through css i can search for a ...
0
votes
3answers
64 views
Removal of table primary key in MySQL
I've removed the primary key of one table of my MySQL database, but now, when I use the MySQL Administrator and try to edit some data of this table, it doesn't allow me to do this.
The button edit ...
0
votes
1answer
356 views
C# Visual Studio 2008 NumericUpDown PopUp Menu Removal
MenuPic
Greetings. I am using the NumericUpDown control on my application. When I right click mouse on any of these controls the popup menu shows up as displayed in the above link.
How do I remove ...
0
votes
2answers
221 views
Interbase 2009: complete removal?
Are there any tools for completely removing an Interbase 2009 SMP installation? I found an article describing how to remove IB6 (http://edn.embarcadero.com/article/28131), but I'm reluctant to delete ...
0
votes
3answers
185 views
Odd Behaviour in Removing .git
I tried to remove my Git-files:
rm -R .git | yes
My CPU becomes loud, and no file is removed. I cannot understand what is going on. How can I remove my .git-files?