search for: tke

Displaying 20 results from an estimated 20 matches for "tke".

Did you mean: take
2004 May 24
0
Merely Opening Excel Files Increments Last-Modificationdate on Samba Shares
...ot;force create mode" -- though these are porbably unnedded in that scenario. I opted for solution (3), because all valid users of the share in question need write access to all files. Though it results in a lack fine-grained access control. --- "Terry L. Eleiott" <teleiott@tke-companies.com> wrote: > Has this issue, Excel file date modification being > updated upon opening and > closing without modification, been resolved? I am > experiencing the same > problem with samba 3.0.2-6.3E. > > Thanks, > Terry > > -----Original Message----- &...
2004 May 25
0
Merely Opening Excel Files Increments Last-Modification date on Samba Shares
...ot;force create mode" -- though these are porbably unnedded in that scenario. I opted for solution (3), because all valid users of the share in question need write access to all files. Though it results in a lack fine-grained access control. --- "Terry L. Eleiott" <teleiott@tke-companies.com> wrote: > Has this issue, Excel file date modification being > updated upon opening and > closing without modification, been resolved? I am > experiencing the same > problem with samba 3.0.2-6.3E. > > Thanks, > Terry > > -----Original Message----- &...
2004 Mar 24
4
Windows Based Machines' Names
Hi, Do you guys know of any command that I can run on windows based machines on command line that would give me the computer name of that machine? I know the other way is to right click on My Computer and ..... and also many others, but is there any command line command that would give me the desired output? Saad.
2006 Mar 18
4
Mongrel Console 0.1 -- script/console meets mongrel
This is a super quick announcement for a new Mongrel plugin called mongrel_console. It was inspired by a request from Tobias L?tke who wanted to tail out logs while Mongrel was running. What mongrel_console does is combine the Rails script/console with Mongrel so that you can control a mongrel server while using script/console. Sounds weird but it''s quite awesome for development hacking. You get to start, stop, and...
2006 Apr 13
8
DevTower Beta3 Release!
DevTower Beta3! (0.3) I''m proud to announce some major changes and improvements to DevTower in this beta release! First and foremost, DevTower is now a full plugin. Also, DevTower works (only) with Rails 1.1. ==== ABOUT ===== DevTower used to synchronize the development of Ruby On Rails applications with developers working simultaniously on multiple systems with Subversion. DevTower
2006 Jan 01
7
[ ANN ] Hieraki2
Happy new year! Hieraki 2.0.0 is released. You can download Hieraki2 from rubyforge.org as tgz or zip (http://rubyforge.org/projects/hieraki). Hieraki2 has a new wiki engine that ships with more than a dozen new features: * everything-is-a-wiki-page (TM) * all pages are under version control * access control list * stay in full control of the tree structure by cut and pasting
2004 Jun 08
4
Samba just Slow with AutoCad?
Brian I might suggest a couple of setting changes on your XP machines: 1) Open services and stop/disable Web Client 2) Open windows explorer, go to tools>folder options, click the View tab, and uncheck the "Automatically search for network folders and printers" (I'm assuming Windows XP Professional on these settings) Restart and try your printers again. Bob -----Original
2006 Feb 28
12
Examples for Money library ?
Can anybody share some examples of their Money implementation ? I''m trying to setup a Model to use this library, but can''t seem to wrap my head around how it is exactly supposed to work. My Model (Foo) looks like: =============== composed_of :commission, :class_name => "Money", :mapping => [ %w(commission_cents cents), %w(commission_currency currency) ] Yet, in
2007 Jan 02
0
Mocha
On 31/12/06, Tobias L?tke <tobias.luetke at gmail.com> wrote: > > I just replaced various homegrown stubbing and mocking facilities in > Shopify and wanted to let you know my appreciation for this fantastic > library of yours. I love the user interface and the internal code is > something to behold as w...
2004 Mar 15
0
Winbind
...Configuration GUI and I must start winbind manually. The winbind script is in /etc/rc.d/init.d/ that RH's Service Configuration monitors for services. Does anyone know why winbind would not be present in RH's Service Configuration GUI. Thanks in advance, Terry L. Eleiott, P.E. TKE COMPANIES
2006 Mar 07
17
[UNDER CONSTRUCTION] YAC? (Yet Another Capistrano)
My needs are far more modest than Capistrano''s capabilities. Also, when working in a shared hosting environment, the Capistrano model can be outside the capabilities allowed by the Web host. I simply need to push selected directories (on a changed-file basis) out to a server. I have about 80% of the code written to do this (I''m considering YAC for the name, with a nod to
2006 Apr 29
2
Streaming to/from MySQL
Hi. When I upload a 10Mb file (from my browser) to my Rails app, a Tempfile object gets created on the server. When the contents gets written to the database, it''s a simple INSERT, so basically the data is read to memory and then inserted into MySQL. How come the data is not streamed to the DB so we avoid the memory issue? Is this a short coming of ActiveRecord or the MySQL/Ruby
2006 Apr 04
6
Console for Testing Routes?
Hi, when the "Agile Web Development" book talks about routes, there are what looks like console transcripts like the following: URL> store @params = {:controller => ''store'', :action = ''index''} Is there something like a console for testing routes (where you could put in a url and see how rails would route it)?? Ingo -- Posted via
2006 Apr 11
5
Multiple "has" in ActiveRecord
Please excuse a newbie question, but I couldn''t find anything by searching the archives. What I want to know is how to have multiple references to the same class/table within a class. For example, let''s say I have a table called People: create table people ( id serial8 primary key ,name); which just holds a list of the people in the database. Then I have another
2016 Feb 29
6
Timout for LDAP connection
Hi, we are using a round robin dns record for connections to our ldap system. This works fine for almost all cases. In particular, for dovecot does this mean, when an ldap server is stopped, dovecot instantly reconnects to another ldap server. But when the network connection to the active ldap server is broken, dovecot sticks to the failed ldap server. Is there any possibility to define a
2006 May 04
22
Should controllers be "smart"?
I''m working on a small project with a friend, and one of the things we needed to do was send off an email whenever someone signs up an account. His implementation was pretty simple - throw a deliver_welcome call inside the controller after the signup. I''m sure that this is a pretty common thing to do. The problem, in my mind, was that the app now became tied to two places -
2006 Apr 08
76
MIT vs GPL vs LGPL for open source project
I intend to release a project I wrote with Rails. What is the right licensing scheme for a web application (content managing system) which could grow with plugins and add-ons ? Personally, I would prefer the GPL but does that mean any add-on to the CMS (like task management) will have to be GPL ? If some people contribute to the code could it still be double-licenced so that the people who
2006 Apr 04
26
Models accessing the session...
Can someone tell if there is a reason models shouldn''t access the session? Models could easily be made to access the session or some other shared persistant data store such as a file or a table. _This is the problem_, a model needs to know certain information eg. the id of the current user. But the model has no idea about anything outside of its self, because it can''t access
2020 Apr 22
1
R not running under lldb? (osx)
...in notarization, the application has to be fully signed, has to use > hardened run-time and may not enable debugging entitlements. One part of > the hardened run-time is that no debugger is allowed to attach to the > application. > > > > On 22/04/2020, at 8:59 AM, Tim Keitt <tkeitt at gmail.com> wrote: > > > > I see: > > > > Tims-Air:~ tkeitt$ R --version > > > > R version 3.6.3 (2020-02-29) -- "Holding the Windsock" > > > > Copyright (C) 2020 The R Foundation for Statistical Computing > > > > Platfor...
2020 Apr 21
2
R not running under lldb? (osx)
I see: Tims-Air:~ tkeitt$ R --version R version 3.6.3 (2020-02-29) -- "Holding the Windsock" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-apple-darwin15.6.0 (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under the te...