search for: spoiler

Displaying 20 results from an estimated 41 matches for "spoiler".

Did you mean: spoiled
2009 Mar 27
0
LWGate
[spoiler="Mailing List WWW Gateway (LWGate)"]The LWGate is a CGI script, written in Perl, which tries to merge the technologies of the WWW and mailing lists by: Presenting information about mailing lists to WWW users, Assisting users in executing mailing list commands though a user-friendly forms...
2020 Mar 04
5
yaml2obj support for COFF debug directories
Spoiler: the following only applies to Windows binary format handling. Potential for extending yaml2obj to support COFF debug directories<https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#debug-directory-image-only> recently came up during a code review<https://reviews.llvm.org/D7060...
2020 Oct 19
5
[RFC] treewide: cleanup unreachable breaks
...we can enable -Wunreachable-code-break either by default, or W=2 right now might be a good idea. Ah, George (gbiv@, cc'ed), did an analysis recently of `-Wunreachable-code-loop-increment`, `-Wunreachable-code-break`, and `-Wunreachable-code-return` for Android userspace. From the review: ``` Spoilers: of these, it seems useful to turn on -Wunreachable-code-loop-increment and -Wunreachable-code-return by default for Android ... While these conventions about always having break arguably became obsolete when we enabled -Wfallthrough, my sample turned up zero potential bugs caught by this warning,...
2014 Dec 26
1
[Icecast-dev] Icecast 2.4.1 release (Windows Installer)
...en to redo the Windows release of Icecast 2.4.1, as the original one for Windows was just the provisional Zip file. Also we're not going to have a new stable release for the next couple of months, so I want our Windows users to have a nice installation experience without the need to wait long. (Spoiler: There will be a beta release during the next few days though.) Without further ado, here's the Windows installer: http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe Notes: - Not usable to upgrade older versions, you MUST back up your config XML and uninstall any old versions...
2008 Aug 30
2
S.M.A.R.T
At my physics lab we have 30 servers with 1TB disk packs. I am in need of monitoring for disk failures. I have been reading about SMART and it seems it can help. However, I am not sure what to look for if a drive is about to fail. Any thoughts about this? Is anyone using this method to predetermine disk failures? TIA
2017 Mar 16
2
Support for user defined unary functions
...> #> [1] TRUE > > > `%num%` <- as.numeric > > quote(1 + - %num% "5") > > #> 1 + -(`%num%`("5")) > > > 1 + - %num% "5" > > #> [1] -4 > > > Jim > > I'm sorry to be a bit of a spoiler to "coolness", but > you may know that I like to applaud Norm Matloff for his book > title "The Art of R Programming", > because for me good code should also be beautiful to some extent. > > I really very much prefer > > f(x) > to %f% x > &g...
2017 Mar 16
2
Support for user defined unary functions
Gabe, The unary functions have the same precedence as normal SPECIALS (although the new unary forms take precedence over binary SPECIALS). So they are lower precedence than unary + and -. Yes, both of your examples are valid with this patch, here are the results and quoted forms to see the precedence. `%chr%` <- function(x) as.character(x) `%identical%` <- function(x, y)
2019 Aug 01
1
Are those functions thread-safe, i.e. fprintf() and fflush()
Hi, I have one question: Are those functions thread-safe, i.e. fprintf() and fflush() ? Thanks! Regard Andrew
2007 Nov 13
1
Transfer files matching a pattern
Hello, I've googled but not found exactly what I want. I want to transfer *.log from all directories and subdirectories of /var. Directories have to be created remotely only if files match How do you do this ? I try rsync -an --progress --files-from=/tmp/source --filter=": /tmp/pattern" / 10.156.1.1:/home/toto where /tmp/source contains /var and /tmp/pattern contains *.log
2002 Jul 17
0
Fwd: Re: [Flac-users] Can I use Vorbis comment on ogg - flac?
I was wondering if I could use tOGGer in ogg-flac files. So I asked Josh. His answer is quoted below (spoiler: doesn't think so). And when I tried tOGGer it didn't work. So I guess his right. But I wanted to know if his speculation is right (i.e. vorbiscomment saves comments in the first Vorbis packet). And if so why. I´m not sure how is Theora working. But it seemed logical to me that having a the...
2012 Dec 07
0
Barcelona puppet user group announcement
Hi all, We are proud to announce the first meeting of the new Puppet User Group @ Barcelona. The main target of this first meeting is discussing what we want to do with the group, and reach an agreement of the best way of doing it. Spoiler incoming: we are goint to talk about puppet and all its ecosystem (mcollective, foreman, hiera...) When: Thursday, 13th December 2012, at 18:30 Where: Mes Open Bar (http://ur1.ca/5hzin). Pay your own drinks. Agenda: Declaration of intentions: why the group? Mission and objectives (~ 20 min)...
2008 Apr 13
2
[Bug 15486] New: You Have to Burn the Rope doens't work
http://bugs.freedesktop.org/show_bug.cgi?id=15486 Summary: You Have to Burn the Rope doens't work Product: swfdec Version: unspecified Platform: Other URL: http://www.mazapan.se/games/BurnTheRope.php OS/Version: All Status: NEW Severity: normal Priority: medium Component: library
2011 Sep 19
0
Arbitrary in-content metadata or markup extensions - standard/consensus/process?
...t; to existing markdown standards. On the one hand, I see Maruku's curly-braces proposal for arbitrary meta-data on arbitrary elements (http://maruku.rubyforge.org/proposal.html), and on the other hand I see stackoverflow using very different "Tags" syntax as [tag:Something] and "Spoilers" as a variation on blockquote. Maybe the closest thing to what I'm looking for is Abbreviation functionality (in that it applies to a section of text) or Footnote functionality (in that it links to more detailed content at a separate location) in Markdown Extra; I'm just wonderin...
2007 Apr 07
1
zlib plugin
...recently found out by accident about support for gzip compressed mbox files. While this is great for archives to keep wasting of space down to a minimum, unfortunately it is read only -- no support for rw access. Is implementing write access by any chance planned for future releases? Now for the spoiler. :) I mentioned, I found out about this feature "by accident", reading the NEWS for RC29. Talking to some guys on IRC I realized I am not the only one who found out about this by the release announcement. However, no one (around) was able to tell me how to use it, though interested too....
2017 Mar 16
2
Support for user defined unary functions
...> quote(1 + - %num% "5") > >> > #> 1 + -(`%num%`("5")) > >> > >> > 1 + - %num% "5" > >> > #> [1] -4 > >> > >> > Jim > >> > >> I'm sorry to be a bit of a spoiler to "coolness", but > >> you may know that I like to applaud Norm Matloff for his book > >> title "The Art of R Programming", > >> because for me good code should also be beautiful to some extent. > >> > >> I really very much prefer &...
2017 Mar 16
0
Support for user defined unary functions
...) > "100" %identical% %chr% 100 > #> [1] TRUE > `%num%` <- as.numeric > quote(1 + - %num% "5") > #> 1 + -(`%num%`("5")) > 1 + - %num% "5" > #> [1] -4 > Jim I'm sorry to be a bit of a spoiler to "coolness", but you may know that I like to applaud Norm Matloff for his book title "The Art of R Programming", because for me good code should also be beautiful to some extent. I really very much prefer f(x) to %f% x and hence I really really really cann...
2004 Sep 10
2
[Flac-users] Can I use Vorbis comment on ogg - flac?
Hello flac-users, I'm storing my ripped CDs on FLAC until Vorbis 1.0 gets out (supposedly RSN). But I want to enter the vorbis comment just once. Since I'll use ogg bitstream for both files, I was wondering if I could use vorbiscomment or tOGGer on ogg-flac files? Is there any tool (besides de pipe) to convert ogg-flac to ogg-vorbis? Best regards, Alejandro Belluscio
2004 Sep 10
2
[Flac-users] Can I use Vorbis comment on ogg - flac?
Hello flac-users, I'm storing my ripped CDs on FLAC until Vorbis 1.0 gets out (supposedly RSN). But I want to enter the vorbis comment just once. Since I'll use ogg bitstream for both files, I was wondering if I could use vorbiscomment or tOGGer on ogg-flac files? Is there any tool (besides de pipe) to convert ogg-flac to ogg-vorbis? Best regards, Alejandro Belluscio
2008 Jun 18
4
rpmfusion status?
Unless I've missed something (which is possible) there hasn't been any "public progress announcements" regarding rpmfusion in the past several weeks. Is there anything new to report? My ulterior motive is that I would love to have the convenience of a one-stop rpm shop for Centos/RHEL and Fedora, and it's my understanding that's what rpmfusion is intended to be... --
2018 Feb 06
0
Dovecot on GlusterFS via NFS is... strange.
...ays maildir_copy_with_hardlinks = yes mmap_disable = yes lock_method = dotlock (FWIW, I've been using these settings for many years on different NFS storages without any issues. Another instance of Dovecot 2.2.33 on FreeBSD 11.1 with a more traditional NFS storage is rock-solid.) SPOILER: These settings caused terrible issues. For example, when trying to clone a mailbox from an old server to this new Dovecot-on-GlusterFS setup (using imapsync), the following errors would show up frequently: Feb 6 16:44:53 dovecot: IMAP(user at example.com): Panic: file maildir-uidlist.c: line 12...