search for: fletcher

Displaying 20 results from an estimated 171 matches for "fletcher".

2017 Aug 19
1
Which is the best compiler to build LLVM 5.0.0 rc2?
...I have been trying out some other compilers. gcc 5.2 with -std=c++11 This works, although there are still some warnings. gcc 6.4 and gcc 7.1 fail with errors such as this in building libcxxabi as follows: Command: /opt/cmake/bin/cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/home/fletcher/LLVM/llvm-5.0.rc2/local_71 -DCMAKE_C_COMPILER=/opt/gcc-7.1/bin/gcc CMAKE_CXX_COMPILER=/opt/gcc-7.1/bin/g++ -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_TARGETS_TO_BUILD="host" -DCMAKE_CXX_FLAGS="-std=c++11 -I/opt/gcc-7.1/include/c++/7.1.0" -DCMAKE_EXE_LINKER_FLAG...
2008 Jul 01
17
Memory leak scripts
Hola, I am trying to isolate the memory leak I suspect in a mailman installation ? I found: http://blogs.sun.com/sanjeevb/date/200506 It gives an error: god at irt-smtp-02:~ 9:21am 65 # ./memleak.d 10312 dtrace: failed to compile script ./memleak.d: line 3: probe description pid10312:libc.so.1:malloc:entry does not match any probes I am on SunOS 5.10 Generic_127112-07 i86pc i386 i86pc Are
2008 Jan 14
2
Possible bug in handling of HTML comments
...mportant for me, is that I am experimenting with using HTML comments as a means to pass text that should be ignored by MultiMarkdown (e.g. to allow raw LaTeX, etc). But some of the comments *are* being processed, which screws them up. Thanks for any insight, and ideas on how to fix this! Fletcher Penney -- Fletcher T. Penney fletcher at fletcherpenney.net Without question, the greatest invention in the history of mankind is beer. Oh, I grant you that the wheel was also a fine invention, but the wheel does not go nearly as well with pizza. - Dave Barry -------------- next part --------...
2006 Jun 10
3
MultiMarkdown and MathML - new feature and request for help
...f. REQUEST FOR HELP!!! I would appreciate any input available in how to smooth this process a bit, specifically: 1) How can I create a valid document with a .html extension? (requiring .xhtml is going to break a bunch of other stuff) 2) How do I fix my xhtml2latex stylesheets (http:// fletcher.freeshell.org/wiki/Markdown_and_XML) to work with a file that has the xmlns attribute applied to the html node? (Or with whatever comes out of an answer to #1 above) 3) Any suggestions on the markup syntax? I sort of arbitrarily chose the use of an extra `. I am sure there is a better way...
2011 Oct 21
2
congratulations to fletcher penney
big congratulations to fletcher penney on his release of "multimarkdown composer". at #21-paid when i purchased it just now. i'd say $9.99 will be best in the long-term -- don't listen to people who say more -- but $7.99 is the _right_ introductory price. word-of-mouth will be what sells this pup, so you want...
2003 Jul 10
6
info
HI I'm a student in chemical engineering, and i have to implement an algoritm about FIVE PARAMETERS INTERPOLATION for a calibration curve (dose, optical density) y = a + (c - a) /(1+ e[-b(x-m]) where x = ln(analyte dose + 1) y = the optical absorbance data a = the curves top asymptote b = the slope of the curve c = the curves bottom asymptote m = the curve X intercept Have you never seen
2004 Mar 10
1
MD4 checksum_seed
...often predictable. The right thing to do is to always use a really random value (e.g., use /dev/urandom if available). In batch mode, you can store the random value somewhere in the batch fileset. Note that, above, block hash collisions are very easy to find if you know checksum_seed. The rolling Fletcher checksum1 is trivially defeated. To defeat the k-bit truncated MD4 checksum2, just keep generate random blocks having the same checksum1 until you find two with the same checksum2; by the birthday paradox it will take about 2^(k/2) attempts, where usually k=16 or k=24 with J.W. Schultz's code....
2007 May 14
2
Searchable archives of Markdown discussion list still available?
...and/or span's to Markdown text, but didn't have much luck. IIRC, the list never had a searchable web interface, but older posts were available on a Google search. This seems not to be the case any more. Can anyone recommend a good way to search the archives of this list? Thanks! Fletcher -- Fletcher T. Penney fletcher at fletcherpenney.net This `telephone' has too many shortcomings to be seriously considered as a means of communication. The device is inherently of no value to us. - Western Union internal memo, 1876. -------------- next part -------------- A non-text atta...
2011 Oct 20
6
maybe a year ago, but not today
...a couple factors: (1) it used pandoc's parser, and (2) it was _very_ accurate, fixing the problems that plagued _every_ existing_attempt_ at markdown syntax-highlighting, a tribute to the parser. ali wrote this up for his computer science master's studies. ali's work caught the eye of fletcher penney, inspiring him to make a text-editor for multimarkdown, out any day now. i'm not sure how it fits in, because i'm pretty sure that it predated the work by rantakari, but fletcher also changed his parsing model, changing over to the pandoc method. i believe john and fletcher actually...
2011 Jul 14
5
can you see the future?
looks like my message from last week about writing tools was right on time... we are enjoying a display of fireworks now going off in this particular arena... fletcher started work on an editing app with markdown-preview built right in, after reporting on his blog that he had "seen the future" in ali's post last month, where ali debuted his syntax highlighter, and fletcher is releasing versions daily... > http://fletcherpenney.net/2011/06/ive...
2008 Jan 18
33
LatencyTop
I see Intel has released a new tool. Oh, it requires some patches to the kernel to record latency times. Good thing people don''t mind patching their kernels, eh? So who can write the equivalent latencytop.d the fastest? ;-) http://www.latencytop.org/ -- cburgess at qnx.com
2011 Jul 08
1
Fwd: [MMD] MMD-Edit is progressing nicely
Begin forwarded message: > From: fletcher at fletcherpenney.net > Date: July 6, 2011 10:38:33 PM EDT > Subject: [MMD] MMD-Edit is progressing nicely > > MMD-Edit is progressing nicely > > 07/06/2011 22:31:22 > I am continuing work on my text editor for the Mac, MMD-Edit. It?s based on work described in another post,...
2012 Nov 28
3
Conditional model in R
...,4,5, or 6). This data set has a lot of zeros (plots where the plant was not present). I am trying to model cover class of the plant as a function of both total nitrogen and shrub cover. After quite a bit of research I have come across a conditional approach to modeling data with a lot of zeros (Fletcher et al. 2005, Welsh et al. 1996). In this approach you model the presence/absence data using a logistic regression and then model the presence only data using ordinary (least squares) regression. I have successfully come up with both a logistic model and an ols model with good fits. I am running i...
2005 Jan 03
1
samba v3 slow with 'security = server'
...and 3.x.x to slow this down immensely. Is there any way we can run with security set to server but cache the results of the server conversation? Am I missing a new option that can set? Would 'security = Domain' help? or will it suffer from the same issue. Anthony. -- Anthony R Iano-Fletcher Room 2033, Building 12A, http://dcb.cit.nih.gov/~arif National Institutes of Health, Anthony.Iano-Fletcher@nih.gov 12A South Drive, Bethesda, Phone: (+1) 301 402 1741. MD 20892-5624, USA.
2007 Jul 03
2
link anchor targets?
Is there any way to pursuade markdown to create HTML link anchor targets? -- Make April 15 just another day, visit http://fairtax.org
2006 Sep 11
2
Possible bug in Markdown.pl with `<<` handling
...;/code></pre> <p>As is &lt;&lt; this>>/.</p> The `&;t;<` causes problems with XSLT. I suppose one could look for series of `<`'s and convert them all to `&lt;`. Is there any situation in which this would be the incorrect thing to do? Fletcher -- Fletcher T. Penney fletcher@alumni.duke.edu I have noted that persons with bad judgment are most insistent that we do what they think best. - Lionel Abel -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature S...
2005 Mar 11
4
Multiple IAX Phones Behind NAT
...e, I can take it. At this time it's flat impossible to have multiple IAX phones behind a NAT without using an * gateway because there's no way to have a client listen on a port besides 4569. Is my only option to learn about SIP and attempt to forward that through my NAT? Thanks, Will Fletcher -- Auburn University Department of Computer Science 107 Dunstan Hall Auburn, AL 36849 334-332-9544 fletchw@auburn.edu <mailto:fletchw@auburn.edu> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050...
2012 Jun 09
5
Build failure for isohybrid
...time 0000000000002880 T uuid_generate 0000000000002860 T uuid_generate_random 0000000000002770 T uuid_generate_time 0000000000002780 T uuid_generate_time_safe [root at fedora utils]# gcc --version gcc (GCC) 4.7.0 20120507 (Red Hat 4.7.0-5) Copyright (C) 2012 Free Software Foundation, Inc. -- Tim Fletcher<tim at night-shade.org.uk>
2006 Sep 12
1
MultiMarkdown 2.0.a Released
...I **highly** recommend you try out the new bundle and theme. I believe it will make it much easier to create MultiMarkdown documents, as well as to process them into other formats with minimal effort. Please let me know if you find anything that seems to be broken. Find more at: http://fletcher.freeshell.org/wiki/MultiMarkdown http://fletcher.freeshell.org/wiki/MarkdownStuff Fletcher -- Fletcher T. Penney fletcher@alumni.duke.edu We are born naked, wet, and hungry. Then things get worse. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p...
2004 Jul 14
2
RE: [Asterisk-User] asterisk compile problem
From: "Nik Martin" <nmartin@radiancetech.com>> To: <asterisk-users@lists.digium.com>> Subject: RE: [Asterisk-Users] asterisk compile problem Date: Wed, 14 Jul 2004 09:22:38 -0500 Organization: Radiance Technologies, Inc. Reply-To: asterisk-users@lists.digium.com Fletcher Bonds wrote: >> Hello all >> >> As of 5pm PST today (7/13), I pulled Asterisk down off of >> cvs.digium.com:/usr/cvsroot and tried to compile it on Linux ES 2.1 >> >> Actually, I pulled down zaptel, libri & asterisk and compiled them in >> tha...