Tagged Questions
The clear tag has no wiki summary.
24
votes
13answers
21k views
How to clear python interpreter console?
Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff, etc.
Like any console, after a while the visible ...
15
votes
3answers
15k views
Android Webview - Completely Clear the Cache
I have a WebView in one of my Activities, and when it loads a webpage, the page gathers some background data from Facebook.
What I'm seeing though, is the page displayed in the application is the ...
11
votes
2answers
6k views
Java: Clear the console
Can any body please tell me what code is used for clear screen in Java? For example in C++
system("CLS");
What code is used in Java for clear screen?
Thanks!
10
votes
3answers
2k views
Why is there no list.clear() method in python?
Inspired by this question.
Why is there no list.clear() method in python? I've found several questions here that say the correct way to do it is one of the following, but no one has said why there ...
8
votes
1answer
378 views
DataPointCollection Clear performance
I have this 2 examples:
1 Example:
Series seria = new Series("name");
for(int i = 0 ; i < 100000 ; i++)
{
seria.Points.Add(new DataPoint(i, i));
}
...
7
votes
6answers
3k views
Android: Clear the back stack
In Android I have some activities, let's say A, B, C.
In A I use this code to open B:
Intent intent = new Intent(this, B.class);
startActivity(intent);
In B I use this code to open C:
Intent ...
7
votes
4answers
203 views
Why is List(T).Clear O(N)?
According to the MSDN documentation on the List<T>.Clear method:
This method is an O(n) operation,
where n is Count.
Why O(n)? I ask because I would assume that clearing a List<T> ...
7
votes
3answers
17k views
Javascript array.clear() is not a function?
I'm trying to empty an array containing my drawn coordinates when a button "clear" is pressed. When I call drawnDivs.clear(), I get an error that it is not a function. drawnDivs is certainly an array, ...
7
votes
7answers
3k views
How do you clear console screen in C?
Is there a "proper" way of clearing a screen in C for a console application?
(Besides using:system("cls"))
7
votes
2answers
2k views
Memcache invalidate entries according to a pattern?
Is there a way to invalidate entries in memcache according to a wildcard key?
So if I have the following memcache keys:
data/1
data/2
data/3
Is there a way I can invalidate those keys with ...
7
votes
3answers
4k views
How do you clear the console in MATLAB?
How do you clear the console in MATLAB?
For example, I'm debugging a script that displays a ton of output. I want to clear the console on every run, so I don't have to look through output from old ...
6
votes
4answers
1k views
Eclipse CDT: How to clear Problems window without invoking Clean Project or Build Project?
Is there a way to clear the Problems window (and any related source code error/warning annotations) without invoking "Build All/Project/..." or "Clean project" (or deleting the project and then ...
6
votes
1answer
892 views
Displaying a “clear button” (delete button) in an iPhone webapp textbox
I am creating an iPhone webapp with a textbox. I would like that textbox to display a "clear button" on the right side of the box... aka the round grey button with the X in it.
Is it possible to set ...
6
votes
3answers
2k views
Simplest way to clear a container using raphaeljs javascript graphical library
I have to clear and redraw a raphael javascript main container. I've tried with
var paper = Raphael(10, 50, 320, 200);
paper.remove(); // Doesn't work
paper.node.removeNode(); //this neither
...
6
votes
3answers
2k views
clear() impl in Java's LinkedList
I fear this is a really stupid question, but here goes:
Why does the clear method in Java's default LinkedList implementation bother to walk the list and unhook all the nodes? Why not just unhook ...
5
votes
2answers
63 views
What does clear(Filename) do?
files=dir('*.cpp');
for i=1:length(files)
Filename=files(i).name;
clear(Filename);
......
end
Could anybody explain what does clear(Filename) do? I think it does not delete the variable ...
5
votes
2answers
2k views
Why <div class=“clear”></div> instead of <div class=“clear”/>?
I just realized that:
<div class="clear"/>
after a series of floating divs causes layout havoc, while
<div class="clear"></div>
works fine.
Can anyone explain this?
This is ...
5
votes
1answer
609 views
WPF Validation: Clearing all validation errors
I have a WPF UserControl with many other controls inside of it.
TextBoxes are among these.
Every TextBox has its own validation:
<TextBox>
<TextBox.Text>
<Binding ...
5
votes
4answers
6k views
Java clearing the string buffer after loop
How do you clear the string buffer in Java after a loop so the next iteration uses a clear string buffer?
5
votes
4answers
617 views
Does calling Clear disposes the items also?
Many times there is a clear method, that removes all the items from the collections, are these items disposed also.
Like,
toolStripMenuItem.DropDownItems.Clear();
is sufficient, or should I have ...
4
votes
2answers
498 views
Is it possible to programmatically clear Rails 3 layouts and views cache?
I have a Rails 3 based CMS that allows users to create and modify layouts and views. These layouts and views are the same ones built into the framework, only backed by a model for some additional ...
4
votes
3answers
340 views
Better practice to re-instantiate a List or invoke clear()
Using Java (1.6) is it better to call the clear() method on a List or just re-instantiate the reference?
I have an ArrayList that is filled with an unknown number of Objects and periodically ...
4
votes
4answers
3k views
How to clear back forward list in UIWebview on iPhone?
I want to access/clear the back forward list as if the UIWebView is new again. Is there any public api or workaround to do this?
I've tried
while ([webview canGoback]) {
[webview goBack];
}
...
4
votes
1answer
960 views
Making a <dl> clear before ever <dd> in IE 7?
I'm trying make a <dl> to define the icons I am using on the page. I want it so that every icon is inside a <dt> and it's definition is inside the following <dl>. After every icon ...
4
votes
3answers
471 views
php array clear
Is there any default function to clear only the values of an array. For ex arr{10,3,3,34,56,12} to
arr{0,0,0,0,0,0}
4
votes
7answers
805 views
How can I dynamically clear all controls in a user control?
Is it possible to dynamically (and generically) clear the state of all of a user control's child controls? (e.g., all of its TextBoxes, DropDrownLists, RadioButtons, DataGrids, Repeaters, etc -- ...
4
votes
2answers
1k views
Clear command line output from Python [Eclipse]
I'm using Eclipse for writing Python, and I want to be able to easily clear the screen. I've seen this question, and tried (among other things suggested there) the following solution
import os
def ...
4
votes
2answers
3k views
How to clear shell buffer in Terminal in Mac OS X?
I know 'clear' command clears current screen, but the cleared contents just scrolled up.
Is there a way to clear all cleared buffer contents? I'm figuring this to prevent scrolling up on Terminal.
...
4
votes
2answers
666 views
Simple But Annoying Problem: Can't add top margin to footer that uses clear:both
I can't add top margin to footer that uses clear:both.
Using padding seem to solve the problem. But it ruins the top solid border of the footer.
index.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD ...
4
votes
3answers
803 views
Clearing DrawRectangle in Windows Forms
I am drawing a rectangle, sleeping for a few milliseconds--then I want to clear the rectangle, but I can't figure out how. (The rectangle is sitting over a graphic so I can't simply cover it up with ...
4
votes
6answers
12k views
extra vertical space in IE after div clear
I have created a simple grid of divs by left floating them and an empty div with a clear at the end of each row.
This works fine in Firefox, but in IE I get extra vertical space between rows. I tried ...
4
votes
12answers
7k views
how to clear or replace a cached image
I know there are many ways to prevent image caching (such as via META tags), as well as a few nice tricks to ensure that the current version of an image is shown with every page load (such as ...
3
votes
2answers
243 views
deselect in treeView
So I have a wpf c# application thats information from a file, loads them to a list, then loads the list onto the treeView, it also has buttons to edit, delete, add the information, how i do this is ...
3
votes
3answers
221 views
How to clear the buffer of a streamstring?
I have a streamstring in two loops and it is burning my RAM. So how to clear properly the buffer of a steamstring? It is like that to simplify :
stringstream ss (stringstream::in | ...
3
votes
4answers
657 views
How to resign or hide the keyboard?
I have a pick list to select a day and a text field to show the selected date. It will be like this...
If i choose any date, it will be like this....
The cross symbol in text field is acheived ...
3
votes
5answers
166 views
How does this work with textboxes in win forms
I am learning C#, for my school homeworks. I suddenly try to do something and I thought, I am going to get a bug in the below code
private void ClearControls()
{
this.textBox1 ...
3
votes
2answers
217 views
Clearing Floats without Display property
I know the old school method for clearing floats is a class for clear:both, and that it has generally been outmoded.
I know the new school method is width:100%; overflow:auto or hidden;
But when ...
3
votes
1answer
365 views
Set form input value to “” doesn't clear spaces
Recently I've been trying to implement a command line in JavaScript.
I want the space-bar to act as Enter (submit, clear command line).
In this post, let's represent a space as an underscore, so _ ...
3
votes
2answers
2k views
What is the difference between “marker.setVisible(false)” and “marker.setMap(null)” in Google Maps v3?
I want to clear marker on Google Maps.
What is the difference between marker.setVisible(false) and marker.setMap(null)?
But i don't know which is right?
Thanks
3
votes
1answer
308 views
Clear inside div A is clearing the float of div B, which is outside of div A
This is a problem I've had several times when trying to create layouts with a sidebar.
I made an example here: http://samutz.com/div.html
#content has stuff inside it that needs to float and then ...
3
votes
2answers
204 views
The modern way to clear floated content?
What's the modern way to clear floated content these days?
There's the "recent" modern way of adding a ".clearfix" on the parent element to clear the contained floats and that would work great. In ...
3
votes
1answer
13k views
javascript/jQuery setInterval/clearInterval
i'm using setInterval to check if a p(html paragraph) has a certain text value. if it has it i want to clear interval an continue code flow. i'm using this in a jQuery plugin so if the paragraph has ...
3
votes
4answers
2k views
How do I fix this simple CSS floating issue in IE?
I've got four div elements floated to the left. The third div is cleared.
In Firefox and Chrome the elements are positioned as expected: The first and second divs are adjacent to each other and are ...
3
votes
8answers
10k views
C# Clear all items in ListView
I try to clear my listview but the clear method doesn't work:
myListView.Items.Clear();
This doen't work. When i put a breakpoint at this line, the line is executed, but my listview isn't empty. ...
2
votes
2answers
31 views
Clearing inputs without adding Float
Submit buttons don't seem to clear properly without also adding float. Can someone clear this up for me (no pun intended).
http://jsfiddle.net/qb5TH/
CSS:
.left {float:left}
.clear {clear:both}
...
2
votes
1answer
53 views
How do I clear the contents of a drawn Canvas in Android?
I would like to clear the contents of the canvas after drawing certain things on the screen.
How do I clear the screen fully? Any snippets of code on it will be helpful.
Thanks.
This is my code:
...
2
votes
1answer
179 views
vector::clear() cost so much time?
I ran a profiler (very sleepy) on my program and it shows a high percentage on my reset function (the reset function runs per-frame).
The programs looks like this:
Init Section:
...
2
votes
3answers
63 views
Prolog - how to clear the memory and start from scratch?
I'm developing an algorithm in a .pl file, and examining it with queries on the command window.
I use dynamic variables and retract/assert predicates. And when I modify the pl file and click on ...
2
votes
6answers
103 views
Deselecting all elements from a multi-select dropdown in jQuery
I have a multi-select drop down as following, where I have selected the options "Test 2" and "Test 3".
<select id="edit-rec" class="form-select" multiple="multiple" name="rec[]">
<option ...
2
votes
1answer
314 views
DatePicker clear problem
I have a field with a date picker (jQuery) in jsp page.
sample (DatePicker)
http://jqueryui.com/demos/datepicker/#icon-trigger
Page also has a "clear" button functionality, which clears all text ...