search for: pennebaker

Displaying 18 results from an estimated 18 matches for "pennebaker".

2012 Oct 18
4
Trouble with parentheses in Markdown hyperlinks
...aringfireball.net/projects/markdown/dingus>. I'd paste my sample directly in Gmail, but it would actually fix the URLs and obscure the problem. I believe this is easily fixed by altering the regex responsible for parsing [name](url) syntax to be lazy rather than eager. -- Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://six.pairlist.net/pipermail/markdown-discuss/attachments/20121017/0b32edff/attachment.htm>
2012 Sep 30
3
[LLVMdev] Hello World assembly without clib "puts"?
Can Hello World be written in LLVM assembly without using a C library function like "puts"? Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120929/ed2e5f2f/attachment.html>
2012 Oct 02
2
rsync hashing / collision handling?
...r cases where a file block was changed but even the strong hash algorithm misses it? Have recent versions of rsync considered using a more robust implementation of file change monitoring, like Dropbox <https://www.dropbox.com/help/8/en> does? It looks fast on my machine. -- Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20121002/fcbf8e55/attachment.html>
2014 Feb 05
2
[LLVMdev] How can I get llvm-as for Ubuntu?
I used to be able to `apt-get install llvm` to install `llvm-as`, an LLVM assembler. I think some tools/packages have moved around since then. What can I use to compile `.ll` assembler files into executables? -- Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140205/4ba3bd7a/attachment.html>
2012 Sep 30
3
[LLVMdev] Hello World assembly without clib "puts"?
> > The more important question is: why would you want to do that? What > problem are you trying to solve? As weird as it sounds, I'm looking for multiplatform assembly languages. I want to learn assembly, but I want my knowledge and code to carry over no matter which operating system I'm using. I regularly use Windows, Mac, and Linux, and I don't want to have to rewrite my
2015 May 29
2
libguestfs-tools missing implicit dependency in ubuntu
When I install libguestfs-tools in ubuntu (latest docker base image, 14.04 trusty tahr) and run virt-builder --list, it complains of a missing curl dependency. We should probably make curl an explicit dependency in the deb package to fix this. -- Cheers, Andrew
2013 Nov 20
2
[LLVMdev] clang.exe: fatal error: 'stdio.h' file not found
...or 1 Do I need to add libs to the compile command, something like -lc? I tried a few variants, like -lc, -lstdlib, -lcstdlib, with no success. System: * clang.exe version 3.4 (trunk), from LLVM 3.4.svn * gmake 3.82, from StrawberryPerl 5.16.3.3 * Windows 8.1 Professional x64 -- Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131119/2b7fef90/attachment.html>
2011 Mar 05
3
[LLVMdev] Building LLVM on MinGW32 / Windows 7 Professional x64
...uot; make[1]: Building Intrinsics.gen.tmp from Intrinsics.td make[1]: *** [/c/users/andrew/desktop/src/llvm/lib/VMCore/Debug+Asserts/Intrinics.gen.tmp] Error 255 make[1]: Leaving directory '/c/users/andrew/desktop/src/llvm/lib/VMCore' make: *** [all] Error 1 Close program Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110304/0c397d78/attachment.html>
2004 Sep 10
2
Blocking and compression.
On Tue, 2004-01-20 at 23:44, Josh Coalson wrote: > Miroslav did some experiments with searching for optimum blocksize. > from what I remember it made at best a couple percent difference. > there was a thread about it here a while back. > Did his changes make it in? I can think of a coupla ways to approach this and I'd like to hear about what he tried. A couple of % doesnt seem
2004 Sep 10
4
Blocking and compression.
...e all that great. I'm not expert in asm coding though. The reason I'm hung up on arithmetic is that it provides a great baseline to analyze other methods. You might never use arithmetic, but its great to benchmark. For arithmetic coding I did find these: US 4,935,882, June 19, 1990, W.B. Pennebaker and J.L. Mitchell, "Probability Adaption for Arithmetic Coders". US 4,905,297, February 27, 1990, G.G. Langdon, Jr., J.L. Mitchell, W.B. Pennebaker, and F.F. Rissanen, "Arithmetic Coding Encoder and Decoder System". US 4,973,961, November 27, 1990, C. Chamzas, D.L. Duttweiler, &...
2012 Sep 30
0
[LLVMdev] Hello World assembly without clib "puts"?
On 30 Sep 2012, at 01:05, Andrew Pennebaker wrote: > Can Hello World be written in LLVM assembly without using a C library function like "puts"? LLVM IR models a general-purpose unprivileged CPU instruction set and so lacks anything to do I/O. If you want to interact with anything beyond the CPU and stack, you must either cal...
2013 Apr 30
0
[LLVMdev] Package llvm-mode for MELPA and Marmalade
...r managing emacs mode packages, so that all users need to add syntax highlighting for llvm-mode would be M-x package-install RET llvm-mode RET. Could we package llvm-mode for these repos? * MELPA <http://melpa.milkbox.net/> * Marmalade <http://marmalade-repo.org/> -- Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130430/438d19f8/attachment.html>
2013 Nov 20
0
[LLVMdev] clang.exe: fatal error: 'stdio.h' file not found
Andrew, This might be offtopic for llvmdev. I suggest the mailing list, cfe-users. > * clang.exe version 3.4 (trunk), from LLVM 3.4.svn How did you build it? clang.exe depends on crt libraries, either mingw32 or msvcrt. Please try (and watch their output); > clang --version > clang -v -O2 -o hello.exe hello.c Please confirm; - Which library did you install? Visual studio or
2015 May 31
0
Re: libguestfs-tools missing implicit dependency in ubuntu
On Fri, May 29, 2015 at 06:50:21PM -0500, Andrew Pennebaker wrote: > When I install libguestfs-tools in ubuntu (latest docker base image, 14.04 > trusty tahr) and run virt-builder --list, it complains of a missing curl > dependency. > > We should probably make curl an explicit dependency in the deb package to > fix this. Hilko ^ ? Rich....
2013 Feb 27
1
facter vs specs
A friend pointed out that I may have been reinventing the wheel: My specs project is very similar to Puppet Labs'' facter. What do you think? https://github.com/mcandre/specs#readme -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to
2011 Mar 05
0
[LLVMdev] Building LLVM on MinGW32 / Windows 7 Professional x64
...insics.td > make[1]: *** > [/c/users/andrew/desktop/src/llvm/lib/VMCore/Debug+Asserts/Intrinics.gen.tmp] > Error 255 > make[1]: Leaving directory '/c/users/andrew/desktop/src/llvm/lib/VMCore' > make: *** [all] Error 1 > > Close program > > Cheers, > > Andrew Pennebaker > www.yellosoft.us <http://www.yellosoft.us> > > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2015 Mar 25
3
[Bug 2372] New: Print warning when file permissions too loose for ssh key authentication
...on Product: Portable OpenSSH Version: 6.9p1 Hardware: 68k OS: Mac OS X Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee: unassigned-bugs at mindrot.org Reporter: andrew.pennebaker at gmail.com SSH key configuration is the bane of my existence. No matter how I check and double-check file permissions, there's always that one file or folder that I forget about, that silently triggers SSH ignoring my painstakingly configured SSH key setup, dropping me into a password authen...
2017 Apr 15
0
Alpine package for libklibc-dev?
Could we publish an Alpine package for libklibc-dev, to make it easier for embedded developers to obtain klcc? -- Cheers, Andrew -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://www.zytor.com/pipermail/klibc/attachments/20170414/d86fc964/attachment.html>