Displaying 20 results from an estimated 177 matches for "memos".
Did you mean:
demos
2008 Apr 18
5
show sum of textboxes
Hi all,
I have multiple textboxes containing numbers. I want to add up all the
numbers and show the sum. Can I select the textboxes by class and sum
the content?
This also has to happen realtime: when a number is changed ina textbox
the sum should also change.
can this be done?
regards,
Stijn
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2006 Apr 14
2
spot the error (I can''t, I''m new)
I have a form that I want to use to update multiple
objects. In the controller,
@grades = Grade.find(params[:grade].keys)
@grades.each_with_index do |grade, i|
grade.update_attribute(params[:grade][i])
end
all_valid = @grades.inject(true) {|memo, c|
c.valid? && memo }
this doesn''t update the attributes as I would expect.
(I would just use
2010 Jan 21
2
Help with correct text file syntax EXCLUDE/INCLUDE + OPTION
...nd
some files, see [1] in my /home dir to an external USB HD (Ext4). I want
to use a text file for the purpose.
[1]
/home/user/Documents
/home/user/Software
/home/user/.evolution/addressbook/local/system/addressbook.db
/home/user/.evolution/calendar/local/system/calendar.ics
/home/user/.evolution/memos/local/system/journal.ics
/home/user.evolution/tasks/local/system/tasks.ics
First (1st) attempt
[OPTION] --exclude-from=fileA
[SYNTAX] fileA
+ Documents
+ Documents/**
+ Software
+ Software/**
#
.evolution/addressbook/local/system/addressbook.db
.evolution/calendar/local/system/calendar.ics
.ev...
2008 Apr 22
1
Problem with Prototype 1.6.0.2, Opera 9 and Form.serialize()
Hello,
following code fragment given:
~~~
function jsPostAppend(script, form_id)
{
if(form_id)
//parameters=''&'' + $(form_id).serialize() // first flavour
parameters=''&'' + Form.serialize($(form_id)) // second flavour
[...]
~~~
This works perfect for FF2, IE7 and Safari3 (in both flavours).
With Opera 9.x, I get the following javascript errors:
2015 Jun 02
2
did i miss the memo on asterisk devel ?
I usually lurk on the asterisk devel list to see what's going on.
No posts for a week or two. Has the list moved ?
sean
2015 Jun 02
0
did i miss the memo on asterisk devel ?
sean darcy wrote:
> I usually lurk on the asterisk devel list to see what's going on.
>
> No posts for a week or two. Has the list moved ?
Nope - it's just been a quiet time.
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
2020 Aug 14
2
Fwd: Deterministic function return attribute
Hi László,
On 8/13/20 5:21 PM, László Radnai via llvm-dev wrote:
> (Sorry I clicked reply instead of reply to all)
> I'm fighting with my email client, I hope the quoted text contains
> what I want it to contain.
>
> ---------- Forwarded message ----------
> From: László Radnai <radlaci97 at gmail.com>
> Date: Fri, 14 Aug 2020 00:11:35 +0200
> Subject:
2020 Aug 13
3
Deterministic function return attribute
Hi!
I'm interested in what attributes in LLVM mean, specifically how to
say that the result is always the same for the given input parameters.
The main thing would be to merge two calls with the same parameters
when the function is declared but not defined. (just like two stores).
I'll call this property mergability.
%1 := call @test(%0)
%2 := call @test(%0)
and the optimization would
2005 Aug 30
0
No subject
...ke_windows',
'Y:': '/home/justin',
'Z:': '/',
}
and recursively case-insensitively comparing each remaining part of
the path with the folder contents.
My 'solution', however, breaks down when given a path such as
ex., 'C:\PROG~FBU\MICR~HFZ\TEMP~JWQ\MEMOS\Professional Memo.dot'
where the linux path for this is
'/home/justin/.cxoffice/dotwine/fake_windows/Program Files/Microsoft
Office/Templates/Memos/Professional Memo.dot'
as 'PROG~FBU' does not match 'Program Files'
<CODE>
Option Explicit
Private Declare Function...
2012 Dec 06
1
[PATCH] memop: adjust error checking in populate_physmap()
Checking that multi-page allocations are permitted is unnecessary for
PoD population operations. Instead, the (loop invariant) check added
for addressing XSA-31 can be moved here.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- a/xen/common/memory.c
+++ b/xen/common/memory.c
@@ -99,7 +99,8 @@ static void populate_physmap(struct memo
2006 Aug 24
4
extremely slow recursion in R?
I recently coded a recursion algorithm in R and ir ran a few days
without returning any result. So I decided to try a simple case of
computing binomial coefficient using recusrive relationship
choose(n,k) = choose(n-1, k)+choose(n-1,k-1)
I implemented in R and Fortran 90 the same algorithm (code follows).
The R code finishes 31 minutes and the Fortran 90 program finishes in 6
seconds. So the
2007 Sep 21
1
Weird data from evalJSON
I am trying to have prototype perform a request and return to me a
javascript object representing the json string returned by the
request. I want to iterate over the contents to print each object in
the json string. The value of transport.reponseText in onSuccess is
what I would expect. But once I try to perform evalJSON() on this
text it gives me a bunch of extra function()s when i try to
2016 Apr 06
0
Memory problem
It is hard to tell from the information that you have provided. Do you
have a list of the sizes of all the objects that you have in memory? Are
you releasing large objects at the end of each simulation run? Are you
using 'gc' to garbage collect any memory after deallocating objects?
Collect some additional information with a simple function like below:
f_mem_stats <-
2002 Jun 26
0
Client connections seem to drop
> I have samba v 2.2 on one of my production server, the client connections
> seem to drop sometimes, these clients run overnight jobs and when this
> happens there job crashes and they have to manually start it.
>
> Below is the snippet of the log for one of such clients with problems.
>
> ###########cut-paste of log (only part of it)#########
>
> oplock_break:
2014 Apr 26
2
asterisk servers down ?
I can't reach digium.com or asterisk.org. Did I miss the memo?
sean
2016 Apr 06
1
Memory problem
Dear Sir,
Thanks for the guidance. Will check. And yes, at the end of each simulation, a large result is getting stored.?
Regards
Amelia
On Wednesday, 6 April 2016 5:48 PM, jim holtman <jholtman at gmail.com> wrote:
It is hard to tell from the information that you have provided.? Do you have a list of the sizes of all the objects that you have in memory?? Are you releasing large
2019 Aug 13
5
[PATCH 0/3] generator: pod2text-related improvements
- refactor memoization code
- pass pod as stdin rather than files
Pino Toscano (3):
generator: isolate memoized cache in own module
generator: adjust variable names
generator: improve pod2text invocation
generator/Makefile.am | 3 ++
generator/memoized_cache.ml | 62 +++++++++++++++++++++
generator/memoized_cache.mli | 29 ++++++++++
generator/utils.ml | 101
2011 Feb 25
3
Can the Sidekick PIM run in Wine?
I have been trying to get the Personal Information Manager Sidekick to run on Wine and Crossover. Our company is trying to move over to ubuntu(still fairly new) and after two weeks of searching i have yet to find a contact manager with the functionality and flexibility of sidekick so we are trying to get it working in Ubuntu. The program runs fine but then instantly crashes when i attempt to
2020 Apr 05
2
FMSO transfer gone wrong
Hello,
I'm currently in the process of updating our Samba environment from 4.3
to 4.11. Looks like I did something wrong. Some pointers would be much
appreciated.
Since I wanted to migrate from Ubuntu to Debian anyway, I decided to not
upgrade in place, but instead create new VMs, join them and then remove
the old 4.3 ones. Everything went well until I also wanted to transfer
FSMO roles
2005 May 26
3
Buidling R on Linux (Itanium) fails (PR#7897)
Full_Name: Reinhold Bader
Version: 2.1.0
OS: SLES 9
Submission from: (NULL) (129.187.48.1)
I tried to build R using the Intel compilers (icc, ifort) and the Math Kernel
Libraries
for BLAS/LAPACK
Optimizations used were -O3, and the
FPICFLAGS="-fpic"
was exported.
The build failed with the following error message:
...
dumping R code in package 'methods'
Saving namespace image