search for: unprinted

Displaying 20 results from an estimated 54 matches for "unprinted".

Did you mean: unpainted
2009 Nov 25
1
Eliminating 'Unprintable ASCII' characters
Hi all, I have a csv file containing words with *UNPRINTABLE ASCII* characters (described in the following table). Are there any viable method in eliminating these characters? I realise that *EXTENDED ASCII* characters (i.e , ¡, ¢, £, ¤ etc) can be removed or replaced via *"gsub"* or *"gregexpr"* functions. But am not certain with the *UNPRINTABLE ASCII* characters. Your
2008 Apr 17
3
exam txt file
hi all, i have centos 5 w/o gui. i can only have access via ssh. i have a text file that contains special (unprintable) characters, what editor i can use to exam what those character are??? i use vi, but i don't know what is ^@ may be an editor that can show ASCII as dec or hex. thanks
2012 Mar 25
0
[LLVMdev] [PATCH] add reverse colors to raw_ostream
I'm working on a patch for clang where diagnostics print out unprintable characters vi style. I'm looking for someone familiar with llvm's raw_ostream to review the portion that enables reversed colors. Thanks, Seth Begin forwarded message: > From: Eli Friedman <eli.friedman at gmail.com> > Subject: Re: [cfe-commits] r148389 - in /cfe/trunk:
2019 Sep 06
2
[PATCH 1/1] log: do not print carriage return
From: Christian Hesse <mail at eworm.de> Logging to stderr results in line endings being terminated with carriage return (\r) and new line (\n). While this is fine for terminals it may have undesired effects when running from crond and logging to syslog or similar. I run ssh from cron on an recent linux host. Viewing logs with journalctl I see: Sep 06 16:50:01 linux CROND[152575]: [96B
2009 Jan 22
1
[LLVMdev] Minor AsmPrinter bug fix
The Microsoft CRT's implementation of isprint() has an internal assert that the unsigned value passed in is in [0,256) but unprintable chars passed in are sign extended to values that falsely trigger this assert. --- c:\usr\src\llvm-svn\lib\CodeGen\AsmPrinter\AsmPrinter.cpp Tue Jan 20 10:30:42 2009 +++ c:\usr\src\llvm-integrate\lib\CodeGen\AsmPrinter\AsmPrinter.cpp Thu Jan 22 15:19:47 2009
2005 Jul 12
1
write.foreign, SPSS on Mac OS X
Hi all, I have jut installed the foreign package (v 0.8-8) on my OS X machine, and have a bit of a problem writing out a data frame in SPSS format. Specifically, the code file (the .sps format file) seems to write 3 unprintable hex values instead of double quotes. For example, in the following output ... VALUE LABELS / immDel 1 ###1### 2 ###2### 3 ###3### ... emacs tells me that
2013 May 08
0
My nut-snmp has forgotten how to speak IETF RFC1628!
[I had a look through the mail archives before sending this, but I didn't find anyone else having this issue.] Has anyone seen this before? I'm almost 100% certain I tested this nut correctly detected OB LB in the past, but when I happened to look at it today, I see it refusing to work -- apparently because the NUT client knows how to ask for RFC1628 OIDs, but not what to do with the
2014 Feb 20
3
[LLVMdev] [LLVM] Forward temp label references on ARM in LDR with .ltorg in inline assembly are broken in trunk
I'm not entirely sure what caused this, but the following code, which used to behave as expected, is now broken: ---- lolwut.c ---------------------------- void lolwut(void) { __asm __volatile ( "ldr r1, =1f \n" ".ltorg \n" "1: \n\t" : : : "r0", "r1" ); } ------------------------------------------- ~/clang
2002 Sep 29
2
W9x print driver download problems with Samba 2.2.3a and CUPS
I've set up Samba and CUPS on our testing server here, and used smbcupsadd to upload the Adobe PS drivers to the server as directed in the HOWTO (The CUPS and Samba HOWTOs differ on this point, by the way - the latter claims that PSMON.DLL is needed in addition to the eight other files. I played it safe and had it upload that, too). With the caveat that I first have to connect to each printer
2014 Oct 31
0
[PATCH 1/3] fish: rl.{c, h} - escaping functions for readline
From: Maros Zatko <mzatko@redhat.com> --- fish/rl.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ fish/rl.h | 32 +++++++++++++ 2 files changed, 190 insertions(+) create mode 100644 fish/rl.c create mode 100644 fish/rl.h diff --git a/fish/rl.c b/fish/rl.c new file mode 100644 index 0000000..bb8fd62 --- /dev/null +++ b/fish/rl.c @@ -0,0 +1,158 @@ +/* guestfish -
2014 Oct 31
6
[PATCH 0/3] WIP readline escaping functions
From: Maros Zatko <hacxman@gmail.com> Auxiliary functions for readline to support space character escaping in filenames in future. Escaping function is taken from fish.c (used to be parse_quoted_string) plus its un-escaping counterpart. There are a few tests for both. Maros Zatko (3): fish: rl.{c,h} - escaping functions for readline fish: basic tests for readline escaping autotools:
2007 Aug 09
5
Unremovable file in ZFS filesystem.
I managed to create a link in a ZFS directory that I can''t remove. Session as follows: # ls bayes.lock.router.3981 bayes_journal user_prefs # ls -li bayes.lock.router.3981 bayes.lock.router.3981: No such file or directory # ls bayes.lock.router.3981 bayes_journal user_prefs # /usr/sbin/unlink bayes.lock.router.3981 unlink: No such file or directory # find . -print
2014 Nov 07
3
[PATCH 0/3] v2 readline escaping functions
From: Maros Zatko <mzatko@redhat.com> Helper functions for future support of backslash escaped spaces in filenames. There are a few tests too. Changed according to review remarks. Maros Zatko (3): fish: rl.{c, h} - escaping functions for readline fish: basic tests for readline escaping autotools: add fish/test Makefile.am | 1 + configure.ac | 1 +
2008 Feb 14
1
Riello Dialog Plus UPS
I have a Riello Dialog Plus UPS... someone knows how to configure nut for this UPS? I have tried the bestups, fentonups and sec driver without result... ( I have tried others driver too...) I have tried the genericups but it does not work... This UPS have a RS232 port and seems not to be a "contact closure" UPS (but the manual, for example, tells that "pin 9 contact close: battery
2012 Feb 09
1
[LLVMdev] Difficulty inserting putchar in IR
Hi, I have written a simple code to insert putchar() function into IR. It compiled well but when I tried to run the generated .bc file with lli, its not showing proper output. Function *putchar_func = cast<Function>(M-> getOrInsertFunction("putchar", IntegerType::getInt32Ty(Context), IntegerType::getInt32Ty(Context), NULL)); Value *One =
2009 Jun 22
1
xyplot: subscripts, groups and subset
Hi, I'm running the following code to produce lattice plots of microfibril angle versus ring number in Scots pine. There are 12 trees and 5 sample positions ("Position") in each tree: xyplot(MFA ~ RN | Tree, data = MFA.data, groups = Position, subscripts=TRUE, auto.key=list(space = "top", points = FALSE, lines = TRUE, reverse.rows=TRUE,
2011 May 12
0
grub config garbage after 512 bytes when chainloading via chain.c32
[back story]: I want to convert a non-iso customized Solaris install image (for USB flash stick) to an isolinux hybridized bootable iso image ... since the Solaris installer uses grub out of the box, my first approach was to chain load grub from isolinux (this isn't strictly material to the problem, just trying to avoid the "why on earth would you do that?" responses ;-)
2008 Sep 17
3
Installing & activating mysql in CentOS 5
I want to set up a local mysql server + client (preferably graphical, ie mysqlgui) so have yum installed both perl-DBI and mysql.i386, both apparently successfully. However, I can't see what to do next to get mysqld running, as it doesn't appear in the list of services (in /etc/init.d/). Help appreciated please - is there any good specific documentation on this anywhere? Also, what's
2000 Feb 15
0
print problems revisted
I was able to partially debug the problem i was having I was trying to print the stuck documents in /var/spool/samba but kept getting error messages saying that the documents where unprintable. I accidently tried the lpr -v option thinking it was for Verbose info... That fixed it! Now I just have to figure out why samba is saving my documents in raster format. I had a suggestion to try different
2001 Jan 13
1
Getting ctl M
New to the Samba world. I am getting a control M at the end of line for each file I am transfering to the share from 98/NT machines. Any special things I need to do so this will not happen??????????????