Displaying 20 results from an estimated 849 matches for "kyle".
2006 Feb 23
12
Showcase On Rails CMS v0.1
...vers graphic and web designers in particular, but also other
people with stuff to show off. It''s really easy to customize
progressively, so that some people will only modify CSS, but others
will dig deeper into Javascript behaviors and the Rails view code.
Check it out at http://showcase.kylemaxwell.com/
SVN co at http://svn.kylemaxwell.com/showcase/
then rake migrate up a fresh database, and you''re good to go (/me
waves hand a la Taco Bell commercial)
Features:
- 100% semantic XHTML
- Built on Ruby on Rails
- AJAXified administration
- Revision management
- Textile/Markdown-d...
2011 Sep 04
1
Quotas not recalculating
Hello all --
I have an interesting issue, where the quotas are refusing the
recalculate for anyone on my server.
# doveadm quota get -u kyle at averageurl.com
Quota name Type Value Limit %
storage=540672 STORAGE 0 - 0
storage=540672 MESSAGE 0 - 0
# doveadm quota recalc -u kyle at averageurl.com
# doveadm quota get -u kyle at averageurl.com
Quota nam...
2006 Feb 04
5
file_column + form_remote_tag
...my weekend project, I''m going to get form_remote_tag and
file_column playing happily together. According to my research, no
one has done this yet. If you happen to have tried this, and have
some workable code, send me an email. I''d rather not duplicate the
effort.
Thanks!
--
Kyle Maxwell
Chief Technologist
E Factor Media // FN Interactive
kyle@efactormedia.com
1-866-263-3261
2006 Jan 09
5
form with more than 1 file upload field saves 0 byte file for 1 file field
Im using the file_column plugin to upload files from my application. The
problem I am encountering is that I have a form with 2 file upload fields
and when I submnit that form with files selected, I would get a message from
the browser(Firefox) saying that a script on the page is taking a long time
to execute and whether I want to cancel it or continue. Whichever option I
choose, only 1 file(PDF)
2006 Feb 07
4
RailsCron 0.2.2, please update
...es with ActiveRecord.
Please update if you were on 0.2.1. Also, I am still working on a
good unit test strategy (its tricky because I would think that the
tests must occur over a lot of time), but haven''t had/made time to
give it its due. If you have suggestions, please let me know.
--
Kyle Maxwell
Chief Technologist
E Factor Media // FN Interactive
kyle@efactormedia.com
1-866-263-3261
2005 Sep 09
5
file_column: patched for imagemagick and validation
...s not
match
Examples:
file_column :document, :format => ".txt"
file_column :document, :format => [".doc", ".pdf"]
The code is definitely alpha quality. No warranty, etc. I hope
someone finds it useful. I''d definitely like some feedback on it too!
Kyle Maxwell
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails
2010 Aug 19
0
[LLVMdev] VMKit Boehm MMTk Compilation
...encounters this issue in the future, my issue was the
configuration of llvm-gcc.
Configure with --with-llvmgccdir=YOUR/PATH doesn't work, instead you
are supposed to use --with-llvmgcc=PATH/TO/llvm-gcc and
--with-llvmgxx=/PATH/TO/llvm-g++
That will at least get you past my error.
Best,
Kyle
Quoting nicolas geoffray <nicolas.geoffray at gmail.com>:
> I am running revision 107246 of llvm-gcc.
>
> You can still debug LLVM Makefile framework. I use it to compile my c++
> files to llvm bitcode and then to native.
>
> Nicolas
>
> On Fri, Aug 13, 2010 at 10:47...
2004 May 28
16
Asterisk Receptionist manager program.
...ew other features. Its in the development
stage and has bugs.
but I think its gonna be really good.
If your interested please let me know. Im gonna be putting up a site for
downloading if there is enough interest.
We are considering writing a SIP client build into the program at a
later time.
Kyle
2007 Apr 18
1
help with static userdb
Hey,
This may be a dumb question... I'm trying to set up 1.0 with a static
userdb, and I'm getting stuck. I have:
userdb static {
args = uid=500 gid=500 home=/domains/%d/%n
}
When I attempt to log in as, say, kyle at memoryhole.net (via telnet, so
I *know* I'm logging in as that user), the debug log says that it
thinks my home directory is "/domains//kyle".
I even tried, just to check what might be going on:
args = uid=500 gid=500 home=/domains/%u/%d/%n
It then thought my home directo...
2006 Feb 12
7
form_remote_upload plugin
...oad files. It works nicely with file_column :). Currently, it
only works with RJS templates (no :update option), and I only
implemented the :loading callback. Patches are welcome to flesh out
the functionality, but I''m sharing it now because it''s still quite
useful.
http://svn.kylemaxwell.com/form_remote_upload/trunk
Patches, bugs, etc via email or at dev.kylemaxwell.com
--
Kyle Maxwell
Chief Technologist
E Factor Media // FN Interactive
kyle@efactormedia.com
1-866-263-3261
2010 Aug 05
2
[LLVMdev] VMKit Boehm MMTk Compilation
Hello,
I've been able to get J3 working with the single and multimap garbage
collectors but have hit several snags with Boehm and MMTk.
For MMTk I get here:
Buildfile: /cs/student/kyleklein/vmkit/mmtk/java/build.xml
main:
[mkdir] Created dir: /cs/student/kyleklein/vmkit/mmtk/java/classes
[javac] Compiling 373 source files to
/cs/student/kyleklein/vmkit/mmtk/java/classes
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile...
2006 Jan 19
2
has_many :through
Has anyone had much experience using the new has_many :though options
that are currently in Edge Rails? I''m looking at using it in my
project but haven''t found much about it.
Kyle
2006 Feb 14
7
Action when database changes
Hello,
Is it possible to trigger an action in a controller when
a table from database changes?
I thought about using an utility like cron (railscron) to
check every, e.g. 2 s, if the table changed, but I am wondering
if there is a solution a bit more ''elegant'': to trigger an action
exactly when the change is made.
Best regards,
--
Kuba Nowak
2006 Jan 27
3
Problem setting multi-value cookie
I''m trying to set a multi-value cookie but for some reason it''s not
working. Any help would be appreciated.
cookies[:user] = { :value => {:email=>params[:login][:email],
:passwd=>params[:login][:passwd]}, :expires => 30.days.from_now, :path
=> "/login"}
--
Thiago Jackiw
2006 Jan 19
3
-517611318:Fixnum ... WTF?
...The method is constantly changing, and this error happens on ~5% of
the page loads on my Mac Tiger development box. It''s happening on
Ruby 1.8.2, and 1.8.4 compiled from source. I haven''t seen it on my
Linux production boxes. I was wondering if anyone had seen this
before?
--
Kyle Maxwell
Chief Technologist
E Factor Media // FN Interactive
kyle@efactormedia.com
1-866-263-3261
2004 May 13
4
IAX Freeworld
I have looked all over the site(s) for help. But heres the problem. Im
missing something.
In coming works fine from FreeWorld via IAX. But when Dialing out i get:
May 13 13:42:01 WARNING[1150495040]: chan_iax2.c:5256 socket_read: I
don't know how to authenticate iaxtel to 65.39.205.121
my IAX.conf if as follows
[general]
port=5036
register => ######:xxxxxxxxxxxxx@iax2.fwdnet.net
2006 Jan 25
24
RailsCron 0.2 plugin
...RailsCron checks to see if
the command is currently running, and doesn''t start a new one. You
can overrride this with:
RailsCron.options[:overlap] = true
Is there a better name to use than overlap? Anyhow, have fun, and
feedback is always welcome and encouraged!
Repository:
http://svn.kylemaxwell.com/rails_cron/
Bug Tracker:
http://dev.kylemaxwell.com
--
Kyle Maxwell
Chief Technologist
E Factor Media // FN Interactive
kyle@efactormedia.com
1-866-263-3261
2016 Aug 24
3
Configuration of smb.conf for Active Directory authentication
...I can use this, and if it is wise, identifying that key exchange is complex and a vulnerability at times, but it does provide no local storage of pw either, which may be a greater vulnerability.
Any insight into this, or if this passdb option even works as I believe it to would be valuable to me,
Kyle
2006 Feb 20
5
RailsCron: error message
Hi,
I''m trying to use RailsCron but keeping getting an error when I try to run
it. I''m a beginner, so please use small words :)
-bash-2.05b$ rake cron_start
(in /home/jake/rails_sites/testsite)
Syntax error: "&" unexpected
The little bit I know about my environment:
- RailsCron installed as a plug in (not gem, cause I''m on a shared host)
- Debian Linux
2011 Jan 27
1
Issue with installing BRugs
...erwards - so it
would seem as though I have the correct permissions. (A little Googling
also showed that some people have success when simply retrying to do the
install - no luck there, either.)
Any ideas on how to work around this? I really need that updated version
of BRugs!
Thanks,
Kyle
--------------------------------------------------
Kyle R. Fahrbach
Senior Biostatistician
Center for Health Economics, Epidemiology and Science Policy
United BioSource Corporation
430 Bedford Street, Suite 300
Lexington, MA 02420
Phone: 781-960-0245
FAX : 781-395-7336
Email : kyl...