search for: stuffing

Displaying 20 results from an estimated 452 matches for "stuffing".

2009 Feb 18
0
Stuffing - A plugin to use CouchDB with ActiveRecord models
Hey, Just a heads up on anyone wanting a quick way to start playing with CouchDB (http://couchdb.apache.org/) and Rails without leaving the comfort of ActiveRecord. Stuffing is a Rails plugin that I wrote to let you access a CouchDB document directly within your ActiveRecord model. The plugin is on GitHub: http://github.com/paulca/stuffing/tree/master I posted a short video screencast intro here: http://www.pabcas.com/feeling/a-short-video-introduction-to-stuffing a...
2009 Oct 04
1
ControlMaster and packet stuffing
When I'm running interactive ssh session which is ControlMaster and I run scp or sftp to same host, creating another channel, it seems that ssh is stuffing the packets together exceeding MTU. I've for years ran QoS where I prioritize small packets, as it is clean and easy way to guarantee low latency to pretty much all you care for. Unfortunately ControlMaster packet stuffing breaks this, my interactive packets are not small anymore for the durat...
2011 Feb 27
4
[PATCH] Add minimal mkstemp(3) implementation.
.../time.h> +#include <errno.h> +#include <fcntl.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> + +int +mkstemp(char *template) +{ + int i; + char *cp, *sp; + union { + unsigned short seed[3]; /* for jrand48 */ + uint64_t stuffing; /* for seeding */ + } u; + struct stat sbuf; + struct timeval tv; + + /* time ensures basic distribution */ + gettimeofday(&tv, NULL); + u.stuffing = tv.tv_sec; + u.stuffing *= 1000000; + /* stack is randomised on all Linux platforms */ + u.stuffing ^= (uint64_t)(ptrdiff_t)&i; + /* more t...
2005 Sep 16
0
stuffing POP3 mail into actionmailer... on windows?
I''ve read wiki.rubyonrails.com/rails/show/HowToReceiveEmailsWithActionMailer but can''t seem to find a route to automate stuffing mail into actionmailer on windows. Is there any way to automate a script that does this or is there anything like getmail that can do it for me? This just don''t do it for me: ruby script/runner Mailman.receive(STDIN.read) < email.txt and I really don''t want to cobble tog...
2006 Feb 16
21
RoR VS Rails ???
I didn''t get a chance to go to this meeting debating WebObjects Vs Rails, but here''s a report about it: http://desperatepundit.com/blog/cremes/technology/2006/02/15/WebObjects-versus-Ruby-On-Rails.html I don''t get what he''s saying, hand coding the model? yeah, you COULD ... but what about script/generate ??? And is that so what he said about security? --
2004 Sep 26
1
Samba 2.2.11 upgrade funkyness !!!
Hi all. Am experiancing strange issues with Samba 2.2.11 after upgrading from 2.2.7a. Running it as a Domain Member server to an NT4 PDC the ./config/make/make install was fine, no issues, compiled with same options needed to edit the smb rc file at /etc/rc/d/init.d/smb and make these chamges daemon /usr/local/samba/bin/smbd -D -s /etc/samba/smb.conf daemon /usr/local/samba/bin/nmbd -D -s
2007 May 30
3
memtest86+.. How do I load it with pxelinux?
I've just spent at least half an hour swapping files, downloading things and stuffing around with memtest86 and memtest86+. I can't get either to start from pxelinux. Currently I have "memtest86" as the filename, and i'm trying to load it direct (not trying to use memdisk or anything). This just results in a near instant reboot. Am I doing something wrong? I ca...
2009 Jun 11
3
SIP hacked connection?
Hi Running 1.2.26 BRI stuffed. Calls made via PSTN via ISDN interface (Junghanns). SIP ports mapped through firewall as we often connect from outside, but all SIP accounts have good passwords. However our telecoms provider picked up a few suspicious calls to places we do not normally call at times we do not often call. Looking at Asterisk logs it shows SIP session from the internet connected
2006 Jan 11
4
[OT] DateInput - Intuitive Date Input Selection
For those who are developing interfaces for entering dates, I recommend checking out a new package I just stuffed for Date inputs. You can check out http://datebox.inimit.com/ for a full demo. -Nb ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Nathaniel S. H. Brown http://nshb.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2007 Mar 19
1
wine without X
I have a program, and its possible to run it with wine. I need to run it on Linux system without X. But program tries to create window and die with wine. It uses that window only for logs, and do stuf in console. And I hope it will work without this window =). Is it possible to ignore creating window? Are there another methods to solve my problem? Thanks.
2008 Jul 09
2
ipod software
...t. i looked just like windows explorer and all i had to do was drag and drop from folders to my ipod to transfer music. very simple and easy to use. i've looked a few ipod software programs under linux, but nothing comes close to Anapod. i haven't tried to install it in wine yet for fear of stuffing something up with the system. do you think it is safe to try and install programs on linux and wine when they have not been tested? or is that something for more experienced linux users? thanks
2003 Sep 04
4
update re. Grandstream + SIP + Echo problems ..
...k server, there are two phones which are at a remote office bridged to my LAN via a 128k point to point ADSL .. these do not seem to be working well, you do hear speech but the remote person (dialled over PSTN through an X100P) hears it low and garbled .. I am assuming it's due to the delays in stuffing 64kbits (of g711) over a 128k link and was thinking of switching to G729. I already have the G729 codec installed, and configured with 1 license. Can anyone give me the correct sip.conf commands (or whatever I need) to get the budgettones working over G729? many thanks Dave
2009 May 24
2
help with replacing factors
Hi, In the example dataset below - how can I cahnge "gray20", to "blue" # data black <- rep(c("black","red"),10) gray <- rep(c("gray10","gray20"),10) black_gray <- data.frame(black,gray) # none of this desperate things works # replace(black_gray$gray, gray=="gray20","red") #
2016 Sep 05
2
Extending the AD schema
We're looking at implementing Sudoers LDAP on our Samba 4 AD domain. While this worked perfectly in a test environment previously, I am always extremely nervous about the possibility of stuffing things up on production. Given a domain with multiple DCs (two in our case), should I do add the schema extension with all DCs on line or should one by taken off line to provide an emergency backup in case things go wrong? In this case will the schema extension reliably propagate to the DC whi...
2015 Mar 19
2
NFS4 ACLs with samba 3 (or 4)
...CentOS 6, for example) that offer me the ability to read and set the ACLs on the volume. I figure at some level, someone must have had an API because these tools aren't specific to the underlying filesystem as this could really be offered from anything. > > Well the API is propably just stuffing blobs into extended > attributes directly from userspace. That's how most of > the NFSv4 ACLs usually get done :-(. > > Of course all implementations use different blobs containing > different things to do the same thing :-). > make sure that you dont run in a open files li...
2011 Oct 17
2
Functionality with SetWindowsHookEx WH_JOURNALPLAYBACK
Hello, I am trying to run our own Delphi Application with wine 1.2 on Kubuntu. Applications runs without any problems but Functionality of stuffing keys with setWindowsHookEx(WH_JOURNALPLAYBACK, @Playback, hInstance, 0); is not working at all. Can somebody suggest any work around for this ? If any code changes are needed we can do the same since we have sources of application with us. Since application is Data Entry Centric this functionalit...
2005 Dec 21
2
Random numbers
Hi All. I have R code whose functionality is being replicated within a C+ program. The outputs are to be compared to validate the conversion somewhat - however (as is always the case) I have stuffed my code with random number calls. Random uniform numbers in C+ are being produced using the (Boost) mersenne-twister generators (mt11213b & mt19937) - which is the default type of generator
2008 Feb 01
4
How to sanitize _before_ going into the database?
...nd avoid having to call the (relatively expensive) sanitize every time I render a page. My first thought was to just add something like: def message=(x) self[:message]=sanitize(x) end However, the sanitize helper cannot be called from inside a model. So what would be an elegant way to do this? Stuffing this inside the controller seems awkward (and I would have to put it in several places). Any thoughts? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send...
2009 Nov 23
2
RFC 5574 and multiple frames
Hello all, I am experimenting with Speex in a mobile VoIP application, and it seems that it is worth stuffing more than one codec frame into a single RTP packet; mainly, that sending several frames per packet relieves the underlying network socket connection, which is notoriously problematic in mobile devices. RFC 5574 defines the exact way how to put multiple Speex frames into a single RTP packet, and ho...
2008 Sep 03
2
basic dataframe question
R Users: I'm wondering: Why does my logical vector becomes a numeric vector when stuffed into a data frame? How do I change this so that it's retained as a logical data type? I've tried a couple of things but to no avail. Here's my example code: # Exercise 4-1 in Non-Detects and Data Analysis. Dennis Helsel. 2005. # "Create two new variables in the Interval Endpoints