similar to: tyro Ruby questin

Displaying 20 results from an estimated 90 matches similar to: "tyro Ruby questin"

2006 Mar 21
8
AS/400?
Any success stories using rails against a DB2 database on an as400? If so, how? Thanks Ed Schechter -- Posted via http://www.ruby-forum.com/.
2005 Jun 28
0
Re: Questin regarding HTB
Yes sure here they are: The first one that i have received 2day and does not work almost at all: #!/bin/bash ETH_IN="eth1" ETH_OUT="eth0" BANDA_TOTALA="2Mbit" # pentru neclasificati ar trebui sa fie banda minima - 1k - aici ar trebui sa ajunga trafic necunoscut, # care nu e organizat in shape-uri BANDA_NECLASIFICATI="8kbit" #Shape generale /sbin/tc
2004 Jul 26
4
Asterisk for a large scale implementation
I am looking at Asterisk for a large scale implementation. I was wondering if anyone had any experience (that's code for nice things or not so nice things to say about it) with Asterisk for 50k plus users. Feel free to reply to me directly or back to this list (if it's appropriate. I'm not sure what the proper netiquette is). Thanks in advance... Harry
2015 Mar 11
3
[LLVMdev] n-bit bytes for clang/llvm
> It's definitely doable, but I'd be worried about the maintenance burden. Yes, that is a problem. We are currently not allowed to reveal our target (which has 16-bit bytes, and registers with non-power-of-two bit widths) fully, and therefore not able to submit it upstream. One idea we have toyed with is to create a simple "dummy" version of our target, just to be able
2015 Mar 10
4
[LLVMdev] n-bit bytes for clang/llvm
Back in 2009 there was some discussion of the practicality of supporting char sizes greater than 8-bit: http://lists.cs.uiuc.edu/pipermail/cfe-dev/2009-September/thread.html#6349 http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-September/thread.html#26025 with the consensus seemingly being "quite doable, please get a good patch and submit". However the current code appears (to my
2015 Mar 18
3
[LLVMdev] n-bit bytes for clang/llvm
On 17 Mar 2015, at 13:11, Tyro Software <softwaretyro at gmail.com> wrote: > > As an alternative to fixing the "char == 8 bits" presumption would using non-uniform pointer types have been another possible approach, e.g. keep char as 8 bit but have char* encode both the word address and the byte location within it (i.e. one extra bit in this 16-bit case). Of course this is
2005 Jul 12
1
Tripplite and newhidups
--zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I'm trying to set up a TrippLite Internet Office 750 just like this guy: http://lists.alioth.debian.org/pipermail/nut-upsuser/2005-June/000007.html Here's the output of a few interesting commands stuart@tyro:~+ dpkg-query -l nut nut-usb| tail -n2| awk
2017 Feb 01
2
Status of AAP (Embecosm's demonstration architecture)?
The initial proposal to include AAP in LLVM met with some concern that it would be actively maintained (thread from http://lists.llvm.org/pipermail/llvm-dev/2016-August/103807.html ), and after some review activity seemingly went quiet (although review code has been updated quite recently). Is AAP likely to land any time soon? Also an AAP architecture question (possibly the wrong forum, though
2012 Jun 21
1
Distribution and location scale family
Hi, For some dataset I have made a histogram, boxplot en qqplot. http://r.789695.n4.nabble.com/file/n4634093/Naamloos.jpg Investigate the data with the given functions for making QQ-plots and find an appropriate location-scale family for the underlying distribution of this sample. Apart from giving a proper location-scale family, also specify the member of the location-scale family that is
2009 Jul 15
1
Plotting hourly time-series data loaded from file using plot.ts
Hello everyone, I am just a tyro in R and would like your kindly help for some problems which I've been struggling for a while but still in vain. I have a time-series file (with some missing value ) which looks like time[sec] , Factor1 , Factor2 00:00:00 01.01.2007 , 0.0000 , 0.176083 01:00:00 01.01.2007 , 0.0000 , 0.176417 [ ... ] 11:00:00 10.06.2007 , 0.0000 , 0.148250 12:00:00 10.06.2007
2013 Jan 28
1
Setting inline hook to a function identical to default in knitr turns of exponential formatting
Hello List, while dealing with a questin of 'xiaodao' ( http://r.789695.n4.nabble.com/Problem-with-large-small-numbers-in-knitr-tp4653986.html) I noticed that copying the default inline hook function obtained by knit_hooks$get("inline") into a knit_hook$set(inline = <...>) call turns off exponential fomatting in the resulting .tex file. I used a stripped version of
2015 Apr 27
2
[LLVMdev] seeking a mailing list for llvm ports
Hi - sorry to intrude, but can somebody point me to a suitable mailing list where a tyro can get some advice on modifying an existing llvm llvm assembler ... rather lightly? I want to add an extra instruction to the assembler/machine code supported by the OR1K llvm port. Well, there are a few more things I need to do, but that will be good enough to start with! I was able to what I wanted
2006 Jun 12
0
Realtime form validation for forms containing collections
Hi, I''m successfully using the realtime_form_validation plugin from http://railsrtv.rubyforge.org/ However, my forms contain collections, as described in the AWDWR book. Basically my form looks like this. 2004 2005 2006 Question 1 12 13 15 Question 2 9 11 13 I have the following code to generate ids for my input fields.
2006 Jun 17
0
Dynamic forms containing collections
Hiall, I have the following problem: I need to use forms containing collections (i will call them FCC), and I want to construct them dynamically, as I need to deal with quite large forms (more than 600 input fields). The variables @model_name and @field_name contain the proper model and field names as strings, which is enough for "normal" form input fields. (i.e. the "if
2007 May 08
2
TDB functionality document
Hi, Does someone know a document which explains the TDB structure. functionalites, and format of the TDB files etc. I need to understand why some of the TDBs like messages.tdb, unexpected.tdb, brlock if not read_only, locking.tdb, session.tdb, wins.tdb are called with TDB_CLEAR_IF_FIRST tdb flags. Why some TDBs are opend with O_RDWR|O_CREAT flags viz. gencache.tdb, group_mapping.tdb,
2007 Oct 23
1
"adding" matrix of smaller dimensions to matrix of larger dimensions and "apply" question
Hi I have another question concerning matrices: I have two matrices: > b <- matrix(1:25,5,5,byrow=T) > b [,1] [,2] [,3] [,4] [,5] [1,] 1 2 3 4 5 [2,] 6 7 8 9 10 [3,] 11 12 13 14 15 [4,] 16 17 18 19 20 [5,] 21 22 23 24 25 and > d <- matrix(1:4,2,2,byrow=T) > d [,1] [,2] [1,] 1 2 [2,] 3 4
2005 Mar 28
0
Handling return from modal pages on rails
Hi List, I didn''t like the way store_location worked in rails. It doesn''t know you''ve pushed the "back" button, and it always returns to the top of a page. On a large page, the part you were looking at would no longer be on the screen. People try to deal with this using an AJAX hack, but it seems to me that the proper way to fix it is to store the return
2012 Oct 05
1
[nut-commits] svn commit r3739 - in trunk: docs/man drivers tools/nut-scanner
On Oct 4, 2012, at 6:50 PM, Arnaud Quette wrote: > +/* IPMI auth defines, simply using FreeIPMI defines */ > +#ifndef IPMI_AUTHENTICATION_TYPE_NONE > + #define IPMI_AUTHENTICATION_TYPE_NONE 0x00 > + #define IPMI_AUTHENTICATION_TYPE_MD2 0x01 > + #define IPMI_AUTHENTICATION_TYPE_MD5 0x02 > + #define
2009 May 21
17
Praetorians Game Problem
Hello. Yesterday I installed a very old game named praetorians with WINE. But when i start the game it shows me just fine the eidos and tyro studios advertise and after that the game should start... Instead the screen gets "insane"... It stays black in some parts and in other it bring some pieces of fire-fox that is use in another workspace. anyway the things the screen shows doesn't
2007 Apr 21
3
Using R to create pdf's from each file in a directory
The Platform I am using R on is RHEL3. I run a bash script that collects data into many CSV files and have been processing them one at a time on my local machine with an excel macro. I would like to use R to take data points from each of the CSV files and create line graphs in PDF format because it will save me ALOT of time. I am able to successfully do this when I call the file name