similar to: Working with lists with numerical names

Displaying 20 results from an estimated 100 matches similar to: "Working with lists with numerical names"

2004 Nov 11
2
Restricting access to [homes]
Greetings! I've got a samba server that's serving Windows and Mac clients. I want to restrict the [homes] share such that users can *only* connect to their own home directory, and not make read-only connections to other people's home directories. For example, on a Mac, if I connect to my Samba server with: smb://servername/bbonds and then authenticate myself as:
2020 Oct 02
3
Lahman Baseball Data Using R DBI Package
I?m trying to pull data from one table (batting) in the Lahman Baseball database. Notice X2B for doubles and X3B for triples ? fourth and fifth from the right. The dbGetQuery function runs fine when I leave there two out but I get error messages (in red) when I include 2B/3B or X2B/X3B. Can anyone give me some direction? Thanks, Philip Heinrich
2020 Oct 03
1
Lahman Baseball Data Using R DBI Package
The double quotes are required by SQL if a name is not of the form letter-followed-by-any-number-of-letters-or-numbers or if the name is a SQL keyword like 'where' or 'select'. If you are doing this from a function, you may as well quote all the names. -Bill On Fri, Oct 2, 2020 at 6:18 PM Philip <herd_dog at cox.net> wrote: > The \?2B\? worked. Have no idea why. Can
2020 Oct 08
0
Lahman Baseball Data Using R DBI Package
Hi Philip, You've probably realized by now that R doesn't like column names that start with a number. If you try to access an R-dataframe column named 2B or 3B with the familiar "$" notation, you'll get an error: > library(DBI) > library(RSQLite) > con2 <- dbConnect(SQLite(), "~/R_Dir/lahmansbaseballdb.sqlite") > Hack12Batting <-
2020 Oct 08
1
Lahman Baseball Data Using R DBI Package
This is really a feature of SQL, not R. SQL requires that you double quote column names that start with numbers, include spaces, etc., or that are SQL key words. E.g., > d <- data.frame(Order=c("sit","stay","heel"), Where=c("here","there","there"), From=c("me","me","you")) >
2009 Sep 14
1
Samba PDC + OpenLDAP, Jaunty: Can't join domain
Greetings! I'm trying to get an OpenLDAP (2.4.15-1ubuntu3), Samba PDC (2:3.3.2-1ubuntu3.1) running under Ubuntu Jaunty. I've followed the instructions on the Ubuntu server guide (https://help.ubuntu.com/9.04/serverguide/C/samba-ldap.html) as closely as possible (twice. . .), and spent some time with Chapter 5 of the Samba3 By Example book, trying to use it to get things working. But I
2004 Oct 15
4
pdf device --- axes labels text disappeared?
Dear R Wizards: Running R 1.9.1. on amd64. Promise<- c(0,20,40); Expect<- c(0, 20, 0.2*20+.8*40 ); # this omits printing numbers on the axes labels. pdf(file = "bug.pdf" ); plot(Promise, Expect, type="b", ylim=c(0,60)); dev.off(); # this works postscript(file = "bug.eps" ); plot(Promise, Expect, type="b", ylim=c(0,60)); dev.off(); apologies if
2002 Aug 30
1
PANIC, Samba 2.2.3a-6
Greetings, I just upgraded my samba server to the latest Debian stable package, which is listed as: 2.2.3a-6. I got the following errors in the logs when a user installs a printer: barfoo smbd[1083]: [2002/08/30 10:36:12, 0] libsmb/cliconnect.c: attempt_netbios_session_request(977) barfoo smbd[1083]: attempt_netbios_session_request: FOOBAR rejected the session for name *SMBSERVER
2014 Jul 15
1
Postfix user@domain splitting
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Tue, 15 Jul 2014, Ricardo Branco wrote: > Attached files > > Nick Edwards wrote, On 15/07/2014 10:19: >> you need to show doveconf -n >> and what you have in the master.conf for dovecot >> >> On 7/15/14, Ricardo Branco <ricardo at wenn.com> wrote: >>> I have been trying looking though all the wiki
2010 Oct 10
3
WINE, StarCraft II and I/O bottlenecks
Hi all. Since I installed SC2 on my Ubuntu 10.04 x86-64 (Phenom II X4 965 BE, 8 GB Ram, nVidia 470 GTX - Driver 260.19.06, USB mic+headphones), I never managed to play at it with Ultra details with more than 12~15 FPS. You could say that the fault is in a slow CPU, bad videocard or lousy sound card (the above USB stuff). But the CPU isn't that bad, the ram quantity is more than enough and
2002 Aug 05
0
Printing: most printers work, one doesn't?
Greetings, I have several printers set up on my samba server and all of them work. The printers are all being served by a CUPS server. Recently one of them was ruined (someone loaded the wrong type of transparency paper) and I temporarily replaced it with a deskjet printer connected to a Linux host running CUPS. The main CUPS server points to the secondary CUPS server that has the printer
2002 Dec 27
0
Cross-subnet browsing, interfaces
Greetings, I recently upgraded my Samba server and am now running Debian sid's samba-2.999+3.0.alpha20-4. I have the following domain / workgroup / browsing options set in /etc/samba/smb.conf: interfaces = eth0 192.168.54.0/24 192.168.52.0/24 os level = 65 local master = yes domain master = yes domain logons = no preferred master = yes enhanced browsing = yes
2007 Jan 03
2
Rails and bb forum integration
Hi, I''m new to Rails. Have read the Agile book. Working on new app, its going well. Now, I am at a crossroads. I need to choose a bbs for my site The significance for rails development is that I want to have single sign on between both my Rails app and my forum. I was just about to work on integrating the Rails SaltedLoginGenerator into my rails app when I read this post
2005 May 18
10
Salted Login Generator issues
Hello all, I''ve just installed and begun to integrate the salted login generator. So far I''m very impressed, though I''ve hit a few snags along the way. Unfortunately, I''ve met the first one that I haven''t been able to resolve on my own. When I hit the login action, I get errors in my log files. The specific error with trace is included below.
2009 Dec 02
2
Extracting vectors from a matrix (err, I think) in RMySQL
I have a query which returns a data set like so: > salaries yearID POS pct 1 2009 RF 203 2 2009 DH 200 3 2009 1B 198 4 2009 3B 180 5 2009 LF 169 6 2009 SS 156 7 2009 CF 148 8 2009 2B 97 9 2009 C 86 10 2008 DH 234 11 2008 1B 199 12 2008 RF 197 13 2008 3B 191 14 2008 SS 180 15 2008 CF 164 16 2008 LF 156 17 2008 2B 104 18 2008
2009 Dec 03
2
Formatting of numbers on y axis
Hello all. I have the following: plot(salaries$yearID, salaries$salary, type='n', xaxt='n', xlab='', yaxt='n', ylab='') axis(1, at=unique(salaries$yearID), labels=unique(salaries$yearID), lwd=.25, tck=-0.05) axis(2, axTicks(2), format(axTicks(2), scientific = F)) Which nicely creates the Y axis with the raw numbers, which are in the range of .5 - 7
2009 Dec 22
7
Frustrations with MySQL loss, tcpdump, netstat, etc
Hi All, Hi All, MySQL 5.0.77 on CentOS 5.4 MySQL is running, my Wordpress stuff is working, but I cannot connect to the server from my house. This server is in my house, however, but on a public IP, behind a firewall, etc. I checked my hardware firewall (a dedicated UnTangle system) and that is successfully allowing the passage. I know this because the firewall shows: 2009-12-22 6:29:41 am
2009 Dec 02
0
Stacked bar chart help.
Can't figure this out. I have the following list of salary averages per year, per position. The dput output is: > dput(salaries) structure(list(yearID = c(2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008), AVG = c(8956855.61, 7886684.166126, 7534048.43102, 7406439.339471, 7219148.437934, 6697734.908336, 6400379.88398,
2006 Apr 05
7
Archive monthly count for blog
I am creating a blog to learn ruby on rails. from the layout page i pass all the posts as a collection to _archive.rhtml <%= render :partial => "archive", :collection => @archive %> On _archive.rhtml i have access to the collection. I am then gone to render partial another page _archivecount.rhtml to display the number of posts for each month. Can anyone give a clue
2006 Mar 07
0
Form fields and MySQL column name Association
Im having trouble with a sports site im creating for a client of mine. The part is where the Team Captians for each team in the league go into the admin section to submit a match report for each match. The form looks like this: TEAM 1 BATTING: (these are all drop down menus that pull the player names from the database) There are 10 of these rows that look like this, 1 row for each player.