search for: sliding

Displaying 20 results from an estimated 1669 matches for "sliding".

Did you mean: slicing
2008 Mar 10
2
Create Slide Shows (PowerPoint/KeyNote-Style) Using Markdown using the Slide Show (S9) Ruby Gem
Hello, I've published a Ruby gem that lets you create slide shows and author slides in plain text using a wiki-style markup language that's easy-to-write and easy-to-read. Yes, that's Markdown. (Textile is supported too ;-) You can find two samples online in Markdown: o http://slideshow.rubyforge.org/svn/samples/rest.text o
2012 Jun 18
1
Slide Show (S9) v1.1 Update - More Template Packs (Deck.js, Impress.js, CSSS, Slidy2, etc.)
Hello, If you're interested in authoring your presentations/slide shows in Markdown, you might check out the Slide Show (S9) gem in Ruby. A simple slide show looks like: What's Slide Show (S9)? ======================= A Free Web Alternative to PowerPoint and KeyNote in Ruby Getting Started in 1-2-3 Easy Steps =================================== * Step
2009 Jan 14
2
Korean Translation - Anaconda Slides
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, Well, it seems like my gnome terminal can't interpret Korean translations very well. Or maybe it can and I don't know how to confirm it ? I tried the following encoding characters in the gnome terminal: Current Local (UTF-8) Korean (EUC-KR) Korean (UHC) Korean (JOHAB) and all I can see are question marks inside black rhombus. That
2007 Feb 02
3
S5 slide show system
S5 - http://meyerweb.com/eric/tools/s5/ - is an html-based slide-show system. It produces professional-looking slideshows from text with a little xml markup. Has anyone tried using Markdown to generate S5 slide-shows? I think this would be a pretty neat system. I'm thinking a level-1 header could be the slideshow title, and level-2 headers could define individual slides. Any thoughts? - Dan
2006 Dec 10
2
question about data manipulation
Dear all, I have a dataset dat<- pep[c(420:423,1258:1261,2096:2099),c(3,4,7,14)] Slide Block Name pearson_res 2102 23 2 CTERQANFLGKIWPS 0.07618407 2103 23 2 ATLEEMMTACQGVGG 1.93543619 2104 23 2 IPVGEIYKRWIILGL 0.22211959 2105 23 2 MFSALSEGATPQDLN -0.08249410 3662 24 2 CTERQANFLGKIWPS -0.10250513 3663
2009 Oct 15
7
[LLVMdev] [cfe-dev] Developer meeting videos up
Hi, Chris > All of the videos are now up on the web page, and most of the slides > are up (still need to get David's and Evan's slides).  Please let me > know if you hit any problems. First of all, thanks a lot about all stuff with videos & slides posting. I'm a bit curious: is there any reason why are other slides / videos not available (it seems that the ones missing
2006 Aug 11
9
Getting Really Started with Rails - Tutorial styled Slides Available
For those that missed out joining the amazing turnout of ~70 people here in Vancouver for the mini-workshop I did on the 27th last month, I am making available the 30 slides I used for the presentation. The slides were used in conjunction with me demonstrating it via command line. Alot was learned by both attendees, and quite possibly even more so by myself while teaching the material. I created
2009 Oct 15
0
[LLVMdev] [cfe-dev] Developer meeting videos up
On Oct 15, 2009, at 8:29 AM, Anton Korobeynikov wrote: > Hi, Chris > >> All of the videos are now up on the web page, and most of the slides >> are up (still need to get David's and Evan's slides). Please let me >> know if you hit any problems. > First of all, thanks a lot about all stuff with videos & slides > posting. > > I'm a bit curious:
2009 Jan 23
2
Release Note translation for CentOS 5.3
Hi guys, are you all still with us on CentOS? Good ... As you may already have seen Red Hat has released version 5.3 - and we're busy rebuilding it. As always we would like to have the Release Notes translated to as many languages as possible. So if you do not see your language on <http://wiki.centos.org/Manual/ReleaseNotes/CentOS5.2> it would be more than fantastic if you would
2008 Mar 15
1
error on belongs_to method.
I followed the Ruby on Rails up and running book published by Orielly. there are three DB tables, photo, slideshow, and slide the Slide class in slide.rb is like this: class Slide < ActiveRecord::Base belongs_to :photo :foreign_key =>photo_id belongs_to :slideshow :foreign_key=>slideshow_id end I inserted the sample data into database. When I trying to run the command on page39:
2005 Dec 14
4
unable to force the vector format
Dear all, I am so ashamed to pollute the list with a trivial question, but it is a long time I have not used R, and I need a result in the next one or two hour... I have a table which I have loaded with read.table, and I want to make the mean of its columns. > slides <- read.table("slides.txt") > slides [1:5,] V1 V2 V3 V4 V5 V6 V7 V8 1
2004 Aug 26
2
introduction slides for beginners
Hi all, does anybody have slides for a 1 to 3 hour crash course into R, that I would be allowed to recycle to show a few people the light? On the R-website http://cran.r-project.org/other-docs.html I found several additional books, but no slides. It might be nice to add a page with slides, too. Thank you, -Armin
2005 Dec 08
3
Choppiness in FF v1.5
...nu...check out the following URL using FF (I''m using 1.5). http://jerod.ontasksoftware.com/demo/index.php To reproduce: 1) Click Add Content (view the smooth slide in) 2) Click Close (view the smooth slide out) 3) Drag one of the items in the sortable list 4) Click Add Content again. The sliding is now very choppy. Any thoughts? I don''t remember seeing this in 1.07...anyone running that version able to confirm? -Jerod
2007 Jan 10
2
labels outliers in boxplot
Dear R-users, Following is part of my data, where slide has 36 levels and block 48 levels. I have done boxplot for each slide on the same graph. There are outliers for each slide and I tried to use indentify functtion to identify outliers in such a way that when I click on an outlier or point, the points will be labelled by either their block or ID or by both but without success. How can I make
2008 Dec 16
8
sliding window over a large vector
Hi all, I have a very large binary vector, I wish to calculate the number of 1's over sliding windows. this is my very slow function slide<-function(seq,window){ n<-length(seq)-window tot<-c() tot[1]<-sum(seq[1:window]) for (i in 2:n) { tot[i]<- tot[i-1]-seq[i-1]+seq[i] } return(tot) } this works well for for reasonably sized vectors. Does anybo...
2006 Oct 15
1
how can i compute the average of three blocks for each column ?
Dear all, I want to compute the average of the three blocks for each x-variable which is equal slide in the code below. How can I do that ? block x1 x2 x3 x4 x5 1 23 22 23 24 23 1 21 25 26 21 39 1 23 24 22 23 23 2 20 21 23 24 28 2 32 23 34 24 26 2 19
2009 Oct 15
6
[LLVMdev] Developer meeting videos up
Hi All, All of the videos are now up on the web page, and most of the slides are up (still need to get David's and Evan's slides). Please let me know if you hit any problems. You can access the content here: http://llvm.org/devmtg/2009-10/ FYI, one room recorded a screencast and the other was recorded with a standalone camera. This means that you can't see the speakers in
2007 May 31
2
[LLVMdev] are the Developer Meeting slides available?
I was working at the time, so I can't attend. However, I am very interested in the talk. If the presentation slides are available, could you please post me a link? Thank you Chuck Zhao Intel Research -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070531/c9b56c7e/attachment.html>
2009 Jan 06
12
Anaconda Slides Translations
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Guys, Our Anaconda Slide rendering environment is near to be functional, so I'm wondering if you'd like to add new slides and if translators could take a look at the translations we have now ? Actually we have two Slide designs to choose from: 1. The common Title, Content slides [1]. 2. The common Title, Content slides plus related icon
2003 Apr 05
3
slides in linux R
Hello, In S-Plus Windows you can transform graphics to Powerpoint very easily, in R Windows you can use enhanced metafiles (.emf) and Powerpoint almost as easy. Is there a simular way with R in Linux to transform to the presentation program in StarOffice or OpenOffice or are you stuck with the pdf device? Fredrik Lundgren