Displaying 20 results from an estimated 300 matches similar to: ""rsync cheatsheets""
2015 Apr 06
5
Hoja de Referencia (CheatSheet) para "gglplot2" traducida al español...
Hola,
Durante esta pasada Semana Santa, Santiago Mota y yo mismo hemos traducido
al español la cheatsheet de "ggplot2" que recientemente publicó RStudio.
Nos acaban de comunicar que la hoja de referencia ya está disponible:
http://www.rstudio.com/resources/cheatsheets/
--
Saludos,
Carlos Ortega
www.qualityexcellence.es
[[alternative HTML version deleted]]
2008 Jan 04
7
1.6 cheatsheet
Hey has anyone seen a 1.6 cheatsheet around?
Johnathan Snook did a nice 1.5 one but I''ve been working with 1.6 for a
while and while I can use prototypejs.org, cheatsheets are handy for jogging
memories..
I checked his blog, nothing there for 1.6.
Gareth
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2006 Aug 03
9
Rails Cheatsheets!!!
Hey if you know any rails cheatsheet link add it inot the follwing list,
lets make a long list on Rails cheatsheet.... ;)
1)
2)
3)
4)
.
.
.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060103/a6eea2ac/attachment-0001.html
2010 May 10
2
[Bug 1769] New: sftp displays size and transfer speed as "MB"; should use "MiB" for clarity
https://bugzilla.mindrot.org/show_bug.cgi?id=1769
Summary: sftp displays size and transfer speed as "MB"; should
use "MiB" for clarity
Product: Portable OpenSSH
Version: 5.1p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: sftp
2005 Mar 13
6
newbie uk questions...
hi:
Just starting out with *, and I'm planning to heed the advice to start
simple and small, but the goal i'm aiming for eventually is:
*-based pbx for 10-20 seat small business, based in the UK. Users will
have PoE SIP hardphones. So far so good, but two questions, both
UK-specific, relating to connection to the outside world (PSTN or VoIP):
- are there any UK-based VoIP providers
2008 Jan 16
4
[ADV] The Ruport Book : Your guide to mastering Ruby Reports
Hi folks,
I am pleased to announce that Mike Milner and I have finished the
Ruport Book. We have published it under our own company (Rinara Press
LLC) through Lulu.
With the help of the Ruport community, we''ve refined the book over the
last few weeks to meet the needs of our users. We think it will be a
great help to anyone trying to learn how to do reporting in Ruby /
Rails using
2007 Mar 19
4
Objects "uncompletely" displayed
Hello,
I would like to ask some help about the following problem:
I'm running a soft called beersmith (www.beersmith.com) with wine. The
soft is running but some lists are uncompletely displayed. Only the
first column is displayed but I can sort lists on unvisible columns.
I already have asked help from the developpers but havn't received any
usefull answers:
2007 Mar 13
7
Form with subforms
Hi,
I''m looking for a way to implement subforms. For example, a form where
you can add clients, and at the same time enter contactpersons for
this client.
I''ve been looking around, reading ebooks, etc, but can''t seem to find
a good example/tutorial for something like this. So I would be very
thankful if someone could point me in the right direction.
Thanks,
Sven
2017 Jun 06
3
Tablas en R
Hola doblett
Creo qeu el paquete stargazer te puede ayudar:
https://cran.r-project.org/web/packages/stargazer/index.html
http://jakeruss.com/cheatsheets/stargazer.html
Un saludo.
El 6 de junio de 2017, 15:17, Álvaro Hernández <alvarohv en um.es> escribió:
> Hola, doblett:
>
> Yo utilizo normalmente el paquete 'tables' que tiene una documentación
> bastante buena.
2006 Feb 13
4
activerecord << operator
Hello,
I am new here and actually I am writing my first RoR app.
My question is:
--------
class Topic < ActiveRecord::Base
has_many :messages
end
class Message < ActiveRecord::Base
belongs_to :topic
end
class ForumController < ApplicationController
def post
message = Message.new(params[:message])
@topic = Topic.find(params[:id])
@topic.messages
2015 Mar 12
2
[LLVMdev] Question about shouldMergeGEPs in InstructionCombining
Hi Mark,
It is not clear to me at all that preventing the merging is the right solution. There are a large number of analysis, including alias analysis, and optimizations that use GetUnderlyingObject, and related routines to search back through GEPs. They only do this up to some small finite depth (six, IIRC). So reducing the GEP depth is likely the right solution for InstCombine (which has the
2007 Sep 18
1
[LLVMdev] 2.1 Pre-Release Available (testers needed)
> LLVM-GCC 4.0 fails on Cygwin, possibly due to lack of symbolic links.
I am trying with llvm-gcc-4.2 from svn.
Aaron
2009 Mar 08
2
RESTful nested resources and polymorphism?
With ref to my previous post: http://www.ruby-forum.com/topic/180356
I am now able to access items from topics controller. However, now I
need to add sub-item e.g.: An item itself could have many sub-items. So
my items model is like:
class Item < ActiveRecord::Base
validates_uniqueness_of :title, :scope => [:topic_id]
validates_presence_of :topic_id, :title, :owner, :position
2016 Aug 18
1
Adding to Icestats Available Raw Data
Is there a way to add additional metadata fields to icestats in such a way
as to be accessible to stats-json.xsl? In particular I am interested in
adding "album" and "year".
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.xiph.org/pipermail/icecast/attachments/20160818/6bbd1420/attachment.html>
2017 Dec 17
0
Collaborative Wiki for fostering Open Innovation in R
Dear R Developers,
I am writing in order to open a constructive debate whether if it is worth
it that R Project adopts the Apache Software Foundation & Wikipedia Model
for Open Documentation by using a Collaborative Wiki & Document Store (As a
complement to Bugzilla and Mailing Lists), for fostering collaboration in R
Development.
The objective would be to promote innovation and
2015 Mar 12
3
[LLVMdev] Question about shouldMergeGEPs in InstructionCombining
I think it would make sense for (1) and (2). I am not sure if (3) is
feasible in instcombine. (I am not too familiar with LoopInfo)
For the Octasic's Opus platform, I modified shouldMergeGEPs in our fork to:
if (GEP.hasAllZeroIndices() && !Src.hasAllZeroIndices() &&
!Src.hasOneUse())
return false;
return Src.hasAllConstantIndices(); // was return false;
2014 Apr 07
1
Consistent UID/GID mappings?
Greetings everyone,
I am currently in the process of trying to setup Samba4 as an Active Directory DC. My environment contains about 50% of Windows workstations, and 50% of Centos servers/Ubuntu workstations.
Everything setup quite nicely, with Windows workstations and Linux machines being able to logon with a domain user.
The problem I have is I can't seem to be able to get consistent UIDs
2016 Aug 19
1
Icecast Digest, Vol 146, Issue 7
Thank you Philipp. I'm running icecast 2.4.2 and based on the "Available
Raw Data" in the Icecast docs page (http://icecast.org/docs/
icecast-2.4.0/server-stats.html), it doesn't appear "album" or "year" are
available for the stats-json.xsl file to get. But it may be
misunderstanding what I'm seeing and just don't know how to properly
customize the
2018 Feb 21
1
are there reference lists/cheat sheets for categorized commands?
prepping to teach a 5-day CompTIA linux+ course next week with
CompTIA-supplied courseware and, given that it was my choice, i chose
to set up the classroom with centos 7.4 on all the student systems
since i assume most students are there to learn sysadmin and that's
the most likely platform they'll have when they get back to work.
also, most students are taking this course to prep for the
2005 May 13
5
HTML sanitizer
Hello!
Does anybody know of a Ruby implementation of a HTML sanitizer that
prevents the attacks described on the xss cheatsheet?
(http://ha.ckers.org/xss.html)
I checked out the version Jamis wrote
(http://dev.rubyonrails.com/ticket/1277), but that only covers the
very basic attacks.
Anybody? Just figured I would ask before, before I reinvent the wheel..
Ciao!
Florian