We have gotten several emails and phone calls about yellow text appearing on our webpages at http://www.ciu.edu.
We are specifically using a black text in the stylesheet. It is on a tan background.
One person claimed to be color blind and I have tried various tests for colorblindness, but no such luck.
We are at a loss as to what is g...
I'm looking to write a pair of utilities that read in a newline separated list of integers on stdin and output their binary (4 byte) equivalent to stdout, and vice versa.
My first thought was a simple bash/linux command that would do this, but I was unable to find one. My second thought was to do this in C++, but I can't figure out how...
Right now while I'm typing this theres the preview down below the editor. I would like to do something similair and am wondering how Stack Overflow does this? Thanks!
...
Hello,
I am building a blog site and am having trouble with updating fields in my MYSQL database. Whenever I hit the update button on the form that uses PHP, it adds extra space before the text string in the MYSQL text field. Here is the PHP code:
//UPDATE TEXT
$updated_text = $_POST['text'.$the_post['ID'][$n]];
if ($updated_t...
has anyone ever successfully used the java.awt.font.LineBreakMeasurer to draw word-wrapping text that has java.awt.font.TextAttribute.TRACKING (also known as letter spacing) set on the font?
i create the font by:
Map<TextAttribute, Object> map = new HashMap<TextAttribute, Object> ();
map.put(TextAttribute.SIZE, 18);
map.put(TextAttribu...
Hello all,
Was wondering if anyone had any favourite methods/ useful libraries for processing a tab-delimited text file? This file is going to have on average 30,000 - 50,000 rows in it. Just need to read through each row and throw it into a database. However, i'd need to temporarily store all the data, the reason being that if the tabl...
i select text, open ajax window, click there, and selection of text in explorer disappears. if i do this in firefox, selected text will remain.
any ideas how to do this in explorer ? thanks
...
I have put an initial text in the text box of a asp.net web page. In the text property box.
I want to load the text in the load time of the webpage.
While i debug and run text box is not populating with that text.
Please help me.
<td class="textFieldColumn" style="height:16px!important;">
...
I have an idea to write a note-taking app in Java that does some simple text replacement as you type; probably a small subset of the Markdown syntax. So for instance, if you entered a line that was #sometext, it would get rendered:
sometext
Wikidpad is part of what I'm trying to do (I'm not just re-implementing that, just parts of the ...
hi all,
i am new to iPhone Programming
i want to read the content of text file which is in my Resourse folder. i do lot of googling but failed to get proper way for doing this task.
Please suggest
...
Here's the brief problem:
Input: a list of strings, each containing numbers
(" 3.4 5.4 1.2 6.4" "7.8 5.6 4.3" "1.2 3.2 5.4")
Output: a list of numbers
(3.4 5.4 1.2 6.4 7.8 5.6 4.3 1.2 3.2 5.4)
Here's my attempt at coding this:
(defun parse-string-to-float (line &optional (start 0))
"Parses a list of floats out of a given string"
...
Hi, this is probably a bit tense and I'm not sure if this is possible at all.
But basically, I'm trying to create a small application which contains alot of PowerShell-code which I want to run in an easy matter.
I've managed to create everything myself and it does work. But all of the PowerShell code is manually hardcoded and this giv...
I am creating a common class called writelog.cs
This is to store the common method to call in all my programs (aspx page)
After which, whatever error is produced, it will come out to an error log.txt
This is my codes for writelog.cs
And i got this error: The name 'Global' does not exist in the current context
/// <summary>
/// Summary ...
Not an easy question to decipher, so let me boil it down. I'm trying to convert an MXML component to an ActionScript Class. The component consists of a Form with a TextInput, TextArea, and two buttons - Save and Cancel, and a Validator for the TextInput, and other logic to handle events that occur. This component is currently extended by...
I have a C program that outputs two columns, utterly misaligned. The reason for the misalignment is lengths of words in the first column are very different.
I have an output file opened in vi. How do I quickly align these two columns? I am fine with using awk, perl, sed, and not just vi (7.2) toolset. Also, can we have a generic soluti...
Hello,
I wish to create a college project on a simple online multiplayer management game which will involve players setting orders for the day/week and then obtaining profits. Being a relative beginner I am unable to figure out the architecture required for this task.
As far as I am concerned I would be needing the following things:
...
I originally had a submit button like this
<form action="<?php $self ?>" method="post" >
<input name="search" type="hidden" >
<INPUT TYPE = "Submit" Name = "Submit1" VALUE = "search">
</form>
it made this statment true
if(isset($_POST['Search'])){}
For a time all was well
then i made my submit button a image
<form action="...
How does Babylon recognizing text selection in any software? I have to implement this.
Thanks.
...
Hi,
I'm a noob to VB.NET and I was wondering how to make something you type into a textbox on the application type that text into a website textbox and submit whats in the textbox by pressing a button? I am using visual studio 2008.
...
I'm using the Zemanta API, which accepts up to 8 KB of text per call. I'm extracting the text to send to Zemanta from Web pages using JavaScript, so I'm looking for a function that will truncate my text at exactly 8 KB.
Zemanta should do this truncation on its own (i.e., if you send it a larger string), but I need to shuttle this text a...