Displaying 20 results from an estimated 41 matches for "spoilers".
Did you mean:
spoiler
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 based interface, and Automatically generating a
hypertext interface, on-the-fly, to list
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/D70606#1873185>. Currently, its COFF
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)
Hi once again!
Merry whatever doesn't offend you!
I've taken the time to set up a clean automated build of Icecast for
Windows. This is on the Open Build Service instance of the OpenSUSE
folks. It is now building against a clean and up to date MinGW32
environment, maintained as part of openSUSE.
This needed some fixes to our code to build properly. Erik van
Pienbroek, of the Fedora
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
Martin,
Jim can speak directly to his motivations; I don't claim to be able to do
so. That said, I suspect this is related to a conversation on twitter about
wanting an infix "unquote" operator in the context of the non-standard
evaluation framework Hadley Wickham and Lionel Henry (and possibly others)
are working on.
They're currently using !!! and !! for things related to
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
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
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 wondering...
2007 Apr 07
1
zlib plugin
Good evening, folks,
Well, here at least. ;) I 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
2017 Mar 16
2
Support for user defined unary functions
I guess this would establish a separate "namespace" of symbolic prefix
operators, %*% being an example in the infix case. So you could have stuff
like %?%, but for non-symbolic (spelled out stuff like %foo%), it's hard to
see the advantage vs. foo(x).
Those examples you mention should probably be addressed (eventually) in the
core language, and it looks like people are already able
2017 Mar 16
0
Support for user defined unary functions
>>>>> Jim Hester <james.f.hester at gmail.com>
>>>>> on Thu, 16 Mar 2017 12:31:56 -0400 writes:
> 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
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.
Hi,
I've discovered some interesting behaviour when running Dovecot
on a GlusterFS volume (3.10) that is mounted via NFS 4.1 (ganesha NFS).
First of all, using the usual settings for NFS storage seemed like
an obvious choice for my setup (Dovecot 2.2.33.2, CentOS 7.4):
mail_nfs_storage = yes
mail_nfs_index = yes
mail_fsync = always
maildir_copy_with_hardlinks = yes