search for: mgk25

Displaying 14 results from an estimated 14 matches for "mgk25".

Did you mean: mg2
2017 Mar 31
1
Re: [PATCH 2/3] Use Unicode single quotes ‘’ in place of `' in strings throughout.
On 03/31/2017 04:32 AM, Richard W.M. Jones wrote: > See: https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html > --- > +++ b/align/scan.c > @@ -76,7 +76,7 @@ static void __attribute__((noreturn)) > usage (int status) > { > if (status != EXIT_SUCCESS) > - fprintf (stderr, _("Try `%s --help' for more information.\n"), > + fprintf (stderr, _(&qu...
2007 Aug 24
0
Fixes to make flac build on Solaris
...en(const FLAC__uint16 *s) >> +static inline unsigned local__wide_strlen(const FLAC__uint16 *s) >> { >> unsigned n = 0; >> while(*s++) >> @@ -43,7 +43,7 @@ >> * and a more clear explanation at the end of this section: >> * http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 >> */ >> -static __inline unsigned local__utf8len(const FLAC__byte *utf8) >> +static inline unsigned local__utf8len(const FLAC__byte *utf8) >> { >> FLAC__ASSERT(0 != utf8); >> if ((utf8[0] & 0x80) == 0) { >> @@ -85,7 +85,7 @@ &...
2001 Mar 27
0
PATCH: UTF-8 checking in libvorbis
...ithm on ~150k strings in various charsets (from the gnome translations) and about 0.02% of the strings that has chars with 8th bit set is valid UTF-8 data. (mainly short strings in Korean). If someone wants to review my algorithm, the spec for UTF-8 parsing is available at http://www.cl.cam.ac.uk/~mgk25/ucs/ISO-10646-UTF-8.html Please note that my understanding of the inner workings of libvorbis is quite limited and the documentation is not exactly overwhelming, so the integration of this functionality could be done much better by someone familiar with the code (please be my guest). I have for ex...
2005 Aug 26
2
Generating barcodes (as gif/jpg)
Hello Rubyists, I need to generate barcodes (in UPC and codabar symbologies) and would like to know if anyone has done this with Ruby. From what I can tell, it would be possible to use the gnu-barcode [1] or barcodewriter [2] to generate a PostScript, then through RMagick (via GhostScript) take the file and create a GIF/JPG. These will really only be used for web display (to be printed
2006 Sep 04
0
(PR#9201) Unable to save a plot containing Chinese (two-byte)
...byte characters. and 3 byte and 4 byte chars, and potentially up to 6. > All the chinese characters are represented by two bytes in UTF-8. Please give your reference! They are in the Unicode ranges from 2F00, and characters above 07Ff need 3 or more bytes in UTF-8. http://www.cl.cam.ac.uk/~mgk25/unicode.html > The characters I have used (but that fail to display in your bug-tracking > system) > are two characters "Chinese language". > > My locales are set to UTF-8. That is *not* a locale but a character encoding. > I have not set any fonts in R because all...
2003 Sep 01
2
[Bug 632] PAM conversation function does not return when connection is aborted
http://bugzilla.mindrot.org/show_bug.cgi?id=632 Summary: PAM conversation function does not return when connection is aborted Product: Portable OpenSSH Version: 3.6.1p2 Platform: All URL: http://www.cl.cam.ac.uk/~mgk25/otpw.html#opensshbug OS/Version: Linux Status: NEW Severity: major Priority: P2 Component: PAM support AssignedTo: openssh-bugs at mindrot.org ReportedBy: Markus.Kuhn at cl.cam.ac.uk When a user presses Ctrl-C in ssh while being pro...
2004 Aug 06
0
No subject
...07\356\305\270\300\314\303\265\261\271 > > But in pine it some how magically showed up as Korean glyphs. This is the old way of doing arbitrary encodings in mail. UTF-8 obsoletes it. (If you don't know about UTF-8, I strongly suggest becoming familiar with it; http://www.cl.cam.ac.uk/~mgk25/unicode.html is a good start.) The main reason most people don't use UTF-8 as the default encoding in mail is because older MUA's don't support it. > So, since we already have an RFC approved standard (I'm assuming; I've > been seeing these types of emails for years) for...
2004 Aug 06
0
No subject
...07\356\305\270\300\314\303\265\261\271 > > But in pine it some how magically showed up as Korean glyphs. This is the old way of doing arbitrary encodings in mail. UTF-8 obsoletes it. (If you don't know about UTF-8, I strongly suggest becoming familiar with it; http://www.cl.cam.ac.uk/~mgk25/unicode.html is a good start.) The main reason most people don't use UTF-8 as the default encoding in mail is because older MUA's don't support it. > So, since we already have an RFC approved standard (I'm assuming; I've > been seeing these types of emails for years) for...
2007 Jan 18
1
encoding issues even w/o accents
An earlier thread (in 10/2006) discussed encoding issues in the context of R data and the desire to represent accented characters. It matters in another setting: the output generated by R and the seemingly order character "'" (single quote). In particular, R CMD check runs test code and compares the generated output to a saved file of expected output. This does not work reliably
2015 Oct 09
10
[Bug 2477] New: backspace in interactive session does not delete multi-byte Unicode characters correctly
...01 Expected results: The file "test" should be empty. Solution is quite simple. Adding this this mode into ttymodes.h solves this issue. Problematic is that this changes things on both sides to apply. [1] https://bugzilla.redhat.com/show_bug.cgi?id=1270248 [2] https://www.cl.cam.ac.uk/~mgk25/unicode.html#mod -- You are receiving this mail because: You are watching the assignee of the bug.
2017 Mar 31
0
[PATCH 2/3] Use Unicode single quotes ‘’ in place of `' in strings throughout.
See: https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html --- align/scan.c | 2 +- cat/cat.c | 2 +- cat/filesystems.c | 2 +- cat/log.c | 2 +- cat/ls.c | 2 +- cat/tail.c | 2 +- df/main.c...
2017 Mar 31
6
[PATCH 0/3] Fix some quoting issues.
Fix some quoting issues by introducing Unicode quotes. Note this intentionally only affects end-user messages and documentation. Rich.
2010 Aug 31
13
[PATCH v2] Add progress bars
This is an updated and extended version of the original patch: https://www.redhat.com/archives/libguestfs/2010-August/msg00163.html This adds OCaml and Perl bindings (both tested), support for progress bars in virt-resize, and adds progress notifications to a number of the simpler commands. Still to do is to add progress messages to more commands. There are still a few commands which would be
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
Only in end-user messages and documentation. This change was done mostly mechanically using the Perl script attached below. I also changed don't -> don’t etc and made some other simple fixes. See also: https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html ---------- #!/usr/bin/perl -w use strict; use Locale::PO; my $re = qr{'([-\w%.,=?*/]+)'}; my %files = (); foreach my $filename ("po/libguestfs.pot", "po-docs/libguestfs-docs.pot") { my $poref = Locale::PO->load_file_asarray($filename); f...