similar to: Icebreaker wiki page updated

Displaying 20 results from an estimated 40000 matches similar to: "Icebreaker wiki page updated"

2007 May 30
1
Playlist manager/scheduler
I'm writing a playlist manager/scheduler for Icecast for Google's Summer of Code, mentored by Conrad Parker. I'm calling it Icebreaker. Here is a wiki page for it. http://wiki.xiph.org/index.php/Icebreaker Hopefully I can get some good ideas for features from you folks. :) -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Jun 28
2
Anyone??
I've made a few posts to this mailing list regarding my Google Summer of Code project, and had almost no responses. If anyone has any suggestions or comments, please do so. http://wiki.xiph.org/index.php/Icebreaker -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/icecast-dev/attachments/20070629/0b2d815c/attachment.html
2011 Oct 22
0
[LLVMdev] Question about local variables
Ryan Taylor wrote: > Nick, > > Unfortunately this doesn't answer my question I don't think. It > seems that -instnamer, as you mention, names the instructions but still > does not name the local variables. What other local variables are you referring to? When AsmWriter prints "%y = add i32 %x, 1", the name of that add instruction is "y" and
2006 Oct 14
0
Wiki page updated
The wiki page now contains some updated information about Compiz: http://freedesktop.org/Software/Compiz While I think the idea to create a more designed and visual web presence targeted to users and new people is great, I also think nothing beats a wiki as a collection of informal and up-to-date developer documentation. Ideally, everyone would update the wiki page just like they send
2011 Oct 22
0
[LLVMdev] Question about local variables
Ryan Taylor wrote: > Nick, > > Also, I forgot to mention I had no luck with instnamer, it still left > the local variables as "%slotNum", it didn't name them, unless I used > -instnamer wrong: > > opt -instnamer <file.bc> file2.bc Almost, use -o to specify output: opt -instnamer file.bc -o file2.bc > Those are the ones I am refering to. The
2011 Oct 22
0
[LLVMdev] Question about local variables
Ryan Taylor wrote: > Nick, > > Ah, forgot the -o, thanks, silly mistake. > > So how would you extract "add" from the instruction "%A"? I->getOpcodeName(). > Yes, this is sort of what I am trying to do. The instnamer works fine > for the local variables and I already had the constants sorted out. Great! Nick > > On Sat, Oct 22, 2011 at
2011 Oct 24
0
[LLVMdev] Question about local variables
[please remember to cc llvmdev] On 24 October 2011 13:20, Ryan Taylor <ryta1203 at gmail.com> wrote: > Nick, > > Thanks, this is not really viable as I'd have to check every single > instruction like this, seems like there is a lot of overhead associated with > this solution. I don't know what problem you're solving? Nick On Mon, Oct 24, 2011 at 11:48 AM,
2020 Mar 27
0
Incorrect link in /Contribute wiki page
On Thu, Mar 26, 2020 at 3:59 PM Lucio Seki <lucioseki at gmail.com> wrote: > > On Thu, Mar 26, 2020 at 6:50 PM Akemi Yagi <amyagi at gmail.com> wrote: >> >> On Thu, Mar 26, 2020 at 2:30 PM Lucio Seki <lucioseki at gmail.com> wrote: >> > >> > Hi folks, >> > >> > In the page
2011 Oct 24
0
[LLVMdev] Question about local variables
Nick, Is there a clean way to tell the difference between dst and src operands in operations without assignment "=" (ie, store)? On Mon, Oct 24, 2011 at 9:52 AM, Ryan Taylor <ryta1203 at gmail.com> wrote: > Nick, > > I forgot to thank you, thanks! > > > On Sat, Oct 22, 2011 at 2:25 PM, Nick Lewycky <nicholas at mxc.ca> wrote: > >> Ryan
2006 Feb 28
0
Fix your links in the Commercial Support page in the Rails wiki
Seems that most links in the Commercial Support page [1] in the Rails wiki nowadays point to some variation of pbwiki.com. There''s more than 80 versions of that page and the spamming has happened quite a while ago, so it''s pretty hard to rollback the spam without losing a lot of valid changes to that page. So I suggest everyone at least fix their own information as soon
2006 Jan 11
2
Wiki Home Page Has Spam Links
It seems the wiki-spam bot has been at work again. There are numerous hidden links toward the top of the page that might be better gardened out right away, if you know what I mean ;-| -- Posted via http://www.ruby-forum.com/.
2010 Aug 20
1
Updating MacOSX Wiki Page
All advanced MacOSX users: Before I go and totally mess up the MacOSX Wiki page, I want INPUT and if you are willing to do updates, please advise so that I don't step on your work (and toes). Direct, off list and out of forum replies are requested. I've turned off the spambot so you won't get those nasty messages anymore. I have better ways of dealing with spam. Thank you. James
2005 Aug 21
2
Created Testimonials Page in wiki
I created a testimonials page. Feel free to add to this. http://wiki.dovecot.org/moin.cgi/Testimonials -- Marc Perkel - marc at perkel.com Spam Filter: http://www.junkemailfilter.com My Blog: http://marc.perkel.com
2020 Mar 29
2
Incorrect link in /Contribute wiki page
Hi Yagi-san, Thank you for guiding me. Does this wiki have a wysiwyg editor? Or the workflow is to download the whole page, edit it, and then upload it back again? In my Menu it shows just 'Load' and 'Save' options in the menu, even in the WikiSandBox page. Regards, Lucio Seki On Fri, Mar 27, 2020 at 1:42 PM Akemi Yagi <amyagi at gmail.com> wrote: > On Thu, Mar 26,
2020 Mar 26
2
Incorrect link in /Contribute wiki page
Thanks Yagi-san! So I was originally wondering how to fix some issues (e.g. typo) in the wiki, and I ended up finding this mailing list. Should I report the issue in the mailing list, and wait for someone with proper privileges to fix it? Or am I allowed to edit it by myself? Lucio Seki On Thu, Mar 26, 2020 at 6:50 PM Akemi Yagi <amyagi at gmail.com> wrote: > On Thu, Mar 26, 2020 at
2011 Oct 24
0
[LLVMdev] Question about local variables
On 24 October 2011 15:50, Ryan Taylor <ryta1203 at gmail.com> wrote: > Nick, > > Oh, sorry. So there are lots of "void" operations, I basically just want > to print out the operation name, it's dest operands and source operands, What's a dest operand? The term "operand" in LLVM always refers to the inputs (ie., an add has two operands). >
2011 Oct 22
9
[LLVMdev] Question about local variables
Nick, Unfortunately this doesn't answer my question I don't think. It seems that -instnamer, as you mention, names the instructions but still does not name the local variables. So there really is no way to do this shy of creating (or basically copying) the API from AsmWriter (seems very dedundant to me)? This seems like a large failing? On Fri, Oct 21, 2011 at 7:03 PM, Nick
2005 Sep 20
1
Shy Suggestion?
The R-exts manual says about 'Suggests' field in package DESCRIPTION: "The optional `Suggests' field uses the same syntax as `Depends' and lists packages that are not necessarily needed." However, this seems to be a suggestion you cannot refuse. If you suggest packages: (a line from DESCRIPTION): Suggests: MASS, ellipse, rgl, mgcv, akima, lattice This is what happens:
2009 Aug 20
0
Correction on Multiple Pages in Wiki
Multiple pages keep trying to link to http://wiki.centos.org/NetworkManager This page does not exist but the following page does. http://wiki.centos.org/HowTos/Laptops/NetworkManager Can people referencing NetworkManager correct their Links. Seems most of the error are in the laptop howtos. Thank you, Nick Sklav
2008 May 27
4
Article for wiki consideration
I've recently documented simple use of a VServer with CentOS host and guest. toracat@ said that it might be worthwhile putting on the wiki. The present article is located at http://home.nyc.rr.com/computertaijutsu/vserver.html If it does get to the wiki, I would remove the fedora section and also add a notice at the beginning of the article with dire warnings about using a non-stock kernel.