Software :: Gcalctool Thousands Separator Doesn't Work?
Jul 3, 2010Ubuntu 10.04 LTS, Gnome. gcalctool Function "Show thousands separator" doesn't actually show thousands separator. Why? Can I fix it?
View 7 RepliesUbuntu 10.04 LTS, Gnome. gcalctool Function "Show thousands separator" doesn't actually show thousands separator. Why? Can I fix it?
View 7 RepliesI dislike this version of the calculator as it no longer is resize-able, and it no longer stores saved numbers as in past versions.So I want to remove it and use a previous version, butSynaptic wants to remove ubuntu-desktop along with it.That doesn't sound right?
View 2 Replies View RelatedIs there any parameter for this? For exampleCode:gnome-terminal --maximizestarts Terminal fullscreen. I want to start calc in the screen's center so I won't need to search it on the display every time I run it. It'a annoying.
View 2 Replies View RelatedUbuntu 10.10 default calculator, gcalctool 5.32. seems to be missing the 10 memory registers it used to have. The geaphic keys for memory functions are missing and control-M does not bring up memory pop-up either. Am I just missing something or have they been removed? I store lots of intermediate results in the registers for use later in calculations.
View 7 Replies View RelatedWhenever you write a program that prints its own process ID, I've always (without any exception) received numbers ranging in the tens of thousands. Never less, never higher. I was just wondering, why is are the process ID #s so high? Are the ones below it all system-related processes? And then when I run the program again, it prints out an ID that is several hundred above the previous execution... what happens between these two executions that come right after each other?
View 1 Replies View RelatedI'm backing up my data asap. However, I am getting hundreds, maybe thousands of disk I/O errors when trying to run everyday programs, such as sqlite and firefox. Looking at dmesg, I see these items repeated many, many times:
[Code]....
[ 5196.943225] Valid eCryptfs headers not found in file header region or xattr region [ 5196.943232] Either the lower file is not in a valid eCryptfs format, or the key could not be retrieved. Plaintext passthrough mode is not enabled; returning -EIO
I am newbie in Linux using Mint 9 Isadora. I am flooded with UFW messages. I would like to how to interpret these messages. I am a bit scared..
View 3 Replies View RelatedOur client has a website (Joomla 1.5 based) to promote participation in and report results of a 10k race for runners in Scandinavia...
The race is scheduled for late June and will be covered by at least 5 still photographers at various points along the race course.
There are to be about 5,000 runners, each entered under a shirt number like bib_1000 through bib_5999, and this means there will be a significant number of digital jpg files submitted by the photographers...
The client has in place some software which will "automagically" resize, watermark, and rename the individual files in the form:
And so on with a possibility of as many as 10 or 12 images in the aggregate with the same alpha-numeric "shirt number" at the beginning of the filename.
Our presentation software does a great job of handling thumbnail image generation and displaying a slideshow in a lightbox of all files within a given folder on the webserver.
And now finally the question...
Given a folder containing 25,000 or so *.jpg files, how can we write a script that:
1. parses the filenames to unique "shirt numbers"
2. makes folders with each "shirt number" as the foldername
3. moves the files from the root of the original folder into the appropriate "shirt number" folder.
Note that the order of my list above is not important, and if you know of a better way to organize the task we are fine with that.
I am unable to write a simple Makefile. Though I know the concept am facing this error:
Makefile:2: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
Should I give a tab or spaces not able to continue.
I'm trying to count words in a text file that has a comma as separator. I know that I must user wc -w, but wc uses space as a separator
View 2 Replies View RelatedI tried to find out how awk works with multiline strings. I found this. I hope it will be useful for somebody. 1. I know that awk can searches simple patterns like '/^one/'
Code:
s="one
two
three"
echo $s | awk '/^one/'
2. I know that "Awk can handle multiline records by specifying the field separator to be a newline and set the record separator to an empty string." I've found it here
[Code]....
For example: file a:Tom:blackLily:pinkfile b:Tom:bigKate:smallAnd, the result:join -t: a1 a ot:Tom:black:bigLily:pinkBut what I want is:Tom:black:bigLily::pink
View 2 Replies View RelatedI have problem with compiling server... I finish ./configure without any problem, and now, when I write make, I see that: Quote: Makefile:360: *** missing separator. Stop. I read something, and know, that error shows when there are problem with spaces. And I should use there a tab. On line 360 I have:
Code: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/account.Po@am__quote@ I try to change this one space inside to tab, but that doesnt work for me... Terminal always show error in the same line.
I want to install mysql50-server and when I write make install clean. I receive this error:
Makefile:34: *** missing separator. Stop.
Here is the code :
# New ports collection makefile for:MySQL-server
# Date created:Fri Apr 11 10:06:26 CET 2003
# Whom:Alex Dupre <sysadmin@alexdupre.com>
#
# $FreeBSD: ports/databases/mysql50-server/Makefile,v 1.251 2010/02/16 11:03:02 ale Exp $
#
PORTNAME?=mysql
PORTVERSION=5.0.90
PORTREVISION?=0
CATEGORIES=databases
MASTER_SITES=${MASTER_SITE_MYSQL}
MASTER_SITE_SUBDIR=MySQL-5.0
PKGNAMESUFFIX?=-server .....
".ifdef USE_MYSQL
.error You have 'USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again.
.endif"
I'm using 'Adobe Flash plug-in 10.3.183.4ubuntu0.11.04.1', installed from the package repos on kubuntu, and since the last update, it has broken all flash functionality in both rekonq and firefox.I have tried removing and reinstalling the package multiple times, both with and without the browsers open. Can anyone suggest a way to restoring functionality?
View 7 Replies View RelatedCode: Select allmyusername@mycompname:~$ varCurl="abc def curl: ( xyz asdf"
myusername@mycompname:~$ expr index '$varCurl' "curl: ("
4
myusername@mycompname:~$ expr index "$varCurl" "curl: ("
3
myusername@mycompname:~$ echo $varCurl
abc def curl: ( xyz asdf
How to make sure that space is treated as space and string is not treated as array? (I expect value of 9 or 10, not 3 or 4).
I wrote a hack script that outputs the following every so often: Code: 01/04/11 10:33:02: 97,1413,1447,2860 I must leave the data format the same --but I want a special number from it. In this case it's 97 and it's always going to be the first in the 4 columns of comma delimited items. I can extract with this:
Code: cat datafile | awk -F" " {'print $3'} | awk -F"," {'print $1'} But that's really sloppy. Can someone point out a better way of doing this (with awk) and tell me why?
The lines beginning with greater-than symbols are the sequence descriptors and the lines immediately after each descriptor with A-Z characters, dashes, and question marks are the aligned DNA sequences. The sequences are always the same length within a file and never span/wrap across more than one line.I am trying to write a script to remove positions in the sequences that are only represented by a -, X, ?, or N (these represent gaps or missing data). Also, if there is exactly one non-gap/missing character in a position it is also useless (there is nothing to compare it to) so I would like to remove those positions as well.
Position 5 (from the left) was removed because it was all gap/missing characters. Position 9 was removed because only one character was a non-gap/missing character. Position 10 was retained because there were 2 non-gap/missing characters.I'm really not sure where to start here. My first concern is I can't figure out how to tell awk to treat each character in lines not containing a greater-than symbol as a separate field. After that, I'm thinking I should use set up a counter to count the number of lines with gap/missing characters comparing that to the total number of lines not containing greater-than signs?
how to make creative web cam working with ubuntu
View 1 Replies View RelatedI have this annoying problem since day one.I am testing out Red Hat RHEL5, everything is fine except DNS look up.If I ping www.google.com, it doesn't work, ping ip address it all works;if I bring up browser, put www.google.com it doesn't work, can't find the name, however, simply put ip address there it works.My DNS seeting seems ok, and the DNS works from Windows box.
View 2 Replies View RelatedWhen I installed my 64 bit system of Ubuntu 10.04 the sound worked very well and I were very happy. The problem started however when I installed Skype which uses pulseaudio. As soon as I start skype (or any other application that uses pulse, HoN for example) the applications sound output or input does not work at all. If I have pulseaudio started in some way, applications that I suppose do not use it like spotify or flash player stops to produce sounds. And when I type "pulseaudio" in the terminal it gives me this:
[Code]...
i have tried mail function in php to send email from the local host its work for yahoo but not with HOTMAIL whay ! actually i tried to figure it out,
View 1 Replies View RelatedI'm having trouble getting compiz to work on my Laptop. It worked for a while and then I turned on Shift Switcher and a message popped up saying..."The new value for the button binding for the action Terminate in plugin Shift Switcher conflicts with the action Zoom Window of the Scale Addons plugin. Do you wish to disable Zoom Window in the Scale Addons plugin?" I was given the option of Set Terminate anyway, Don't set Terminate, and Disable Zoom Window. I clicked Don't set Terminate and ever since the only thing that works in compiz are the bindings in the general options. I've used synaptic to completely remove and then reinstall compiz but the problem persist. Something else weird, all of the changes I made are still there, even after complete removal, but they don't work?
View 2 Replies View RelatedWhen I try to hibernate, the computer just goes to a blank, black screen and doesn't turn off. I have to hold the power button to get it to shut down, and when I turn it back on none of the programs running before hibernation have been saved.
View 8 Replies View RelatedI just recently (about an hour ago) installed Ubuntu Netbook edition on my old laptop, and I was greeted with the message, that unity could not be run due to some sort of missing driver...fair enough, I was then greeted with the default Ubuntu desktop, I installed all my needed software (wine, google chrome) and installed the missing display drivers. I then rebooted the system, and once again I am stuck with the default desktop, and not the Unity interface. I checked the software center, and it says Unity IS in fact installed.. And yet I cannot make it appear. So now I ask you Ubuntu veterans. How do I make it work?
P.S. I wiped the system of windows, and the computer is an old HP Pavilion DV6000
I've got an older graphics card I'm trying to use. It actually runs fine through the bios and even works when fedora is loading. But once fedora finishes loading half the screen turns into thousands of multicolored horizontal lines.
View 4 Replies View Relatedif i run chromium with --enable-gpu-rendering flag chromium's display looks like it's shattered into thousands of pieces and I can't understand a thing. This doesn't happens if I have a previous instance of chromium opened in the usual way, without any flag. In this case if I open another chromium window with the --enable-gpu-rendering flag it's display looks ok, but I can't figure out what's the problem and how could this be fixed if there's solution for it of course.
View 1 Replies View RelatedI am getting a warning from /etc/hosts.deny
Code:
ALL: 192.168.1.3
ALL: 172.68.11.204
[code]...
gave it a couple downloads...couple burns... both just stall at boot
View 1 Replies View Relatedusing suse 11.3 and kde 4.5 I installed kvm, I tried to install widows xp, everything works well until when the windows cd restart, there kvm shows en error like no disk to boot and don't reboot to continue the installation.
View 1 Replies View Related