Displaying 20 results from an estimated 8000 matches similar to: "Google Season of Docs: Requesting feedback on LLVM docs site updates"
2019 Apr 16
2
Google Season of Docs
Hi all,
Google Season of Docs is a program to improve the documentation of Open
Source Organizations, You can find more details here : Season of Docs.
<https://developers.google.com/season-of-docs/>
I'm sharing because i think that LLVM Community may be interested and
get benefit from it.
Thank you!
--
Have a great day!
PreeJackie
-------------- next part --------------
An HTML
2019 Aug 19
4
Introduction and Question about Docs
Hi everyone. My name is DeForest Richards. I’m the technical writer who was
selected to work on the LLVM project as part of the Google Season of Docs
program. I’ll be helping to restructure the documentation page(s) to make
it easier for new and existing users to navigate the LLVM docs.
I’m currently reviewing the existing docs, so you’ll probably see me
posting questions over the next several
2019 Aug 20
5
Introduction and Question about Docs
On Tue, Aug 20, 2019 at 9:25 PM Michael Spencer via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
>
> On Mon, Aug 19, 2019 at 12:38 PM via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi everyone. My name is DeForest Richards. I’m the technical writer who was selected to work on the LLVM project as part of the Google Season of Docs program. I’ll be helping to
2008 Jun 19
5
R web site-Useability & finding varous bits of documentation
I was starting to write a note to a prospective R-user and came to the point of explaining how to get useful introductory information on R.
After mentioning the Into and the FAQs I went on to try to explain how to use a lot of the contributed information.
However I realised that there seems to be no direct way to get to Other Publications or Contributed Documenation.
The best I have seen is
2009 Dec 05
2
Announcing a new R news site: R-bloggers.com
Hello everyone.
After some good time of work, I am proud to present: www.r-bloggers.com
What is R-Bloggers.com?
R-Bloggers.com hopes to serve the R community by presenting (in one place)
all the new articles (posts) written (in English) about R in the "R
blogosphere".
How does R-Bloggers operate?
This site aggregates feeds (only with permission!) from participating R
blogs. The
2007 Jul 28
1
[LLVMdev] Web Site Re-Design
On Jul 27, 2007, at 7:40 PM, Nick Lewycky wrote:
> The body text is either too small or too low-contrast (or both).
> Please
> make it black. Yes, it might not look as pretty, but it will at
> least be
> high contrast.
One of my concerns as well. The Webkit and openSUsE sites seem to be
similar -- maybe just darker and not yet black.
> The four major boxes form a corner in
2006 Mar 28
1
Simple Sidebar Solutions: How does yours work?
I''m working on a simple photo gallery app for personal use and I want to
generalize the sidebar such that in any page (controller or view, I''m
not sure which) I can dynamically add either
1. links to a given sidebar
2. or an entire sidebar.
I know that typo does this, and I''ve looked the code. I think it''s too
complex a solution for my simple site.
2009 Jan 03
2
Some questions from a new webgen user
Hi everyone. Sorry if it is not the place to post questions about
webgen. I use webgen5, i know it is not the stable version but i
couldn''t understand how webgen4 worked, it''s easier with webgen5, and
i won''t have to change my pages when it becomes mainstream ;)
I try to build my homepage using webgen, and there are some things i
don''t know how to do (i am sure
2005 Dec 12
7
Calling absolute links
I have a primary layout that I''m using in several controllers. On my
sidebar I have a link that I set up as follows:
<div id="sidebar">
<%= link_to("Items", :action => "list") %>
</div>
Everything is ok when I call it from my primary controller, but since I
am also calling the layout from a second controller that does
2007 May 23
4
content_for
Any ideas how I would go about writing specs for views which make use
of content_for?
I''d like, for example, to be able to specify that ABC view places XYZ
in the sidebar, which I do using content_for(:sidebar).
Am I missing something obvious?
Kyle
2007 May 09
2
Facter docs
Hello there,
i cannot find the links to Facter on the site. I saw code with things
like :confined and such. Where can i read any docs about how the inner
uses of Facter works ?
http://reductivelabs.com/projects/facter/custom.html
http://reductivelabs.com/trac/puppet/wiki/AddingFacts
don''t speak of it.
--
Cordialement,
Ghislain
_______________________________________________
2012 Aug 28
3
The FLAC website
Martijn van Beurden wrote:
> I can't read russian, but that part of the website seems pretty
> outdated, mentioning FLAC 1.1 as the last news item?
I have no problem dropping that.
> I guess I would like to update the news section with a few items (I
> guess that's what makes a website looks 'fresh', I would love to make
> FLAC look like an active project :))
2011 Jul 07
3
How to make matrix missing data 0
Dear All,
I am trying to analysis traffic data with one timestamp column and speed
column. This data set contains six years data; for each year, I want to make
a matrix in (day of the year) * (hour)
0 1 2 . . . 23
1
2
.
.
365
However random day's record is missing(e.g. there are 40 missing records in
2005 data set), when I tried to use tapply function, matrix came out is
2013 Jul 24
2
[OT] Tidy of Wiki Sidebar
I have been tidying up bits of the Wiki. This
one is not clear cut, so I decided to seek
advice. Also, I wasn't sure where to post this
question, so defaulted to ogg-dev.
Should Speex and CMML be removed from
the Wiki Sidebar at:
https://wiki.xiph.org/MediaWiki:Sidebar ?
Many thanks,
Martin
--
Martin J Leese
E-mail: martin.leese stanfordalumni.org
Web:
2006 Feb 19
2
instance variables in components not read by component view?
Hi,
I''m trying to write a sidebar menu with dynamic menus, and to do so I
would like to define a list of menus to display within my sidebar
component controller code and pass that list to the component display
view, like so:
# menu_controller.rb
class Sidebar::MenuController < ActionController::Base
uses_component_template_root
@menus = %w{admin user help}
def display
2007 Jun 21
1
render :partial => :url - is it possible?
Hi, this is my first post to the list. I''m still learning the rails
framework, having done most of my previous web development in PHP. I''ve
done a bit of googling for the answer to this question, but maybe I''m
just lacking the right word to search for.
Several parts of my site, such as sidebar components, are
self-contained, modularized and re-used in several parts
2006 Mar 24
3
Changing sidebar in layout per controller
I am currently using 2 layouts in my site. One is for the admin area. I
am trying to get content in my sidebar to change depending upon the
current controller.
Example:
Within admin I have a users controller and a articles controller. When
in the users view I want the sidebar to display options (like add user
delete user etc).
What is the best actionview way to do this. I don''t
2007 Jul 28
8
[LLVMdev] Web Site Re-Design
I offered to do the web site a couple of weeks ago. Life got in the
way temporarily, and it took me a long time to make it look the way
that I wanted and to make it look the same in IE6. Anyway, I wanted
to get some feedback on what I had done.
Some concerns:
1. SSI and JavaScript seem like overkill. Each subproject can have
their own look and feel by overriding the CSS
2020 Oct 14
3
Changing IMAP separator - does it break things?
14. 10. 2020 v 11:51, Victor Sudakov <vas at sibptus.ru>:
>
>> I had to do it with 10-20 live users and it went fine, nobody noticed
>> anything (I made the change in the night hours just to be sure
>> though). I had to go down and fix some erratic folder names that
>> resulted from the botched separator handling on some macOS Mail
>> accounts.
>
>
2013 Apr 30
3
[LLVMdev] Improving the usability of LNT
Hi Daniel,
I made some changes to the LNT perf reporting tool to make it more user friendly by adding some features:
1. Make the sidebar and the navigation bar stationary, so that it is easy to navigate the site
2. Have the pop-down menu for the items in the navigation bar, activate upon hovering the mouse, rather than clicking the item
3. Add a nav-link in the sidebar for the