similar to: scope

Displaying 20 results from an estimated 4000 matches similar to: "scope"

2006 Jul 19
11
Getting data from the database only once
Hi, I am a little bit new to ruby. I have a requirement that I need to get the data from the database. I need to do this many times in the whole application. But, I am looking for a way with which I can get the data from the database table only once and store it in some variable, and I can use it anywhere I want.(I am trying not to use the global variable for this purpose). Is there a way
2006 Jun 07
3
fedex tracking
I''ve been using the Business::FedEx::DirectConnect perl module to track and ship packages via FedEx for awhile now. I''m wanting to convert some of this functionality over to ROR, mostly just the package tracking part. Has anyone successfully tracked a package using the Shipping API out on RubyForge? It seems like the functionality is there since it''s just another
2006 Aug 03
9
Rails Cheatsheets!!!
Hey if you know any rails cheatsheet link add it inot the follwing list, lets make a long list on Rails cheatsheet.... ;) 1) 2) 3) 4) . . . -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060103/a6eea2ac/attachment-0001.html
2006 May 09
11
model filter?
Hi All, Is there a way to filter / modify the output of a model class before it''s returned to controller/view that''s calling it? Example: I have a field phone_number which I always want to preformat using the number_to_phone() helper.... Any help is appriciated. Thanks! -- Posted via http://www.ruby-forum.com/.
2007 Aug 07
2
How to use speex library in C#?
Hi everybody, I am fresh for speex and vs.net c#,and I want to use speex in a existed project written by c# language,does anybody done this before?because I do not know how to use c in c#,I worked under linux environment for years,never touched vc.net.Maybe compile the source code into dll file and use them?I heard about the wrapper,what does this mean, Regards Chris -------------- next part
2008 Apr 03
4
C# SIP API to Comiunicate with Asterisk
Do anyone has an idea about an open source SIP API written in C# that can communicate with Asterisk, to call out? Regards, Sanjay.
2006 Jan 06
1
Xapian binding for C#.
Xapians! Anyone know when Xapian bindings for C# will be ready? Thanks, Kevin -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.tartarus.org/pipermail/xapian-discuss/attachments/20060105/257652e0/attachment.htm
2015 Apr 17
2
Integración de R y C#
Hola a todos. Se me está plantendo la posibilidad de empezar a aprender C# para hacer algunos programillas (nada grande). El tema es que el otro día en un mail de esta misma lista alguien (lo siento, no recuerdo quien) puso un link a un post en el que se hablaba de la integración entre R y C#. Por supuesto para llegar a poder hacer esto primero tengo que entender las bases de .NET y C#, pero me
2008 Jan 25
1
Need Advice with C# Program to Create and Display Cusum Chart
I need to write a C# program to create and display Cusum chart from any of the packages, spc, qcc or strucchange. Issues: 1-The data resides in a MS SQL Database. The C# program will handle obtaining the data for the requisite types of samples. Assistance needed on: 1-How can I call the cusum capabilities of any of the above packages and pass the data to the cusum function and plot? 2-How
2006 Mar 10
6
Ruby for presentation layer, C# for business layer - how to
For reasons not relavent, I would like to create an n-tier app as follows. Data Acess layer => NHibernate Business layer => C# Presentation layer => RoR All of which might be spread across multiple machines in each layer. I am looking for the best way to allow RoR to talk to my business layer, dll''s etc hosted on another box. The RoR box might be *nix \ apache or windows
2011 Mar 20
1
GSoC 2011 - Improve Existing Bindings
Dear Olly, I am very excited to contribute in open source community through the platform of Google Summer of Code 2011. I have visited the ideas of ?Xapian? at http://trac.xapian.org/wiki/GSoCProjectIdeas for GSoC 2011. I am interested in working on ?Improve Existing Bindings?. The reason for my interest is that I have previously worked on .NET related projects both in VB and C#. I also have
2007 Jun 14
2
FLAC: library for C#
Harry Sack wrote: > > but aren't they C++ headers en lib's? Not C++, C. > I have no idea how I can include a C++ > header in a C# project. > It this even possible? Yes. Google for "dllimport csharp". Erik -- ----------------------------------------------------------------- Erik de Castro Lopo -----------------------------------------------------------------
2007 Jun 14
2
FLAC: library for C#
I tried that approach a while ago and failed miserably. Marshalling the structs of structs in the flac lib turned out to be a nightmare (I don't pretend to be an expert, mind you...). I eventually switched to writing my own C# lib from scratch. Work is still under progress. It's no rocket science, I do this a G-job. It has definite limitations (no documentation, decodes only 16-bit files,
2014 Nov 29
3
[LLVMdev] Frontend: How to use Member to Function Pointer as callbacks
Hello, As part of a MSIL (i.e. C#) to LLVM frontend I am currently working on ( https://github.com/xen2/SharpLang ), I would need some help/hint about how to properly design "PInvoke callbacks". Through "PInvoke" mechanism .NET allows you to call C functions, i.e.: C#: [DllImport("libc.so")] extern void mempcy(void* dest, void* src, int size); // declaration of C
2007 Feb 01
2
OpenSSH port to the .Net Platform
I am interested in starting a project to port stable versions of OpenSSH to C#, compilable as a stable .Net Library. I was wondering what the list's feelings would be on such a port, if any one else would be interested in such a port, and for any suggestions on raising interest from others to perform such a port. I have nothing against Java and would welcome a similar effort from that arena.
2002 May 13
2
Interactive R, with wrapper
Hello team of R, We have a question about the interactivity of R in Windows, We are implementing a wrapper in C# for displaying graphics generated by R functions. The application in C# communicates with R by standard input and standard output. (when it is written "interactive()", the response is "FALSE") The problem we have is when writing in the standard input
2020 Oct 12
2
Lookup sid with libsmbclient (invoked from c# on mono)
Vincent Le Toux via samba <samba at lists.samba.org> writes: > Indeed, rpcclient is the program I looked for the first time. > > I cannot invoke it in a command line because I have at least 1000 SID to > resolve > (I discover them one by one so I'll have to run rpcclient at least 1000 > times) You can pass multiples SID at a time to these commands. But you would have
2006 Oct 12
1
using speex in C#
You could compile Speex as a DLL (see libspeex_dynamic.dsp) and use PInvoke. http://en.wikipedia.org/wiki/PInvoke Note that Speex will still be executing as unmanaged code and your program will have the added dependency of the native Speex DLL. It appears that someone created a "Speex.NET" based on JSpeex, but I didn't find any useful info on it. You may want to search for this
2007 Jun 13
2
FLAC: library for C#
--- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote: > Harry Sack wrote: > > > Hi FLAC dev's list, > > > > I'm looking for a library for the C# language (Microsoft .Net > > Framework 2.0or higher) to play FLAC files and/or maybe do some > other > > things like getting > > the file duration, file properties, ... of FLAC files. >
2010 Mar 16
1
C# DLL Library
Good afternoon everybody, I am sorry, this question might look trivial to some of you, but I read quite a lot of stuff about package creation and I would like a bit of you advices. I would like to develop a core library which I will be using both from R and from C#. I read that it was possible to import DLL to R. The thing is, I am not sure that the DLL created with C# will be compatible. I