search for: longhand

Displaying 19 results from an estimated 19 matches for "longhand".

2005 Oct 20
3
[PATCH]Cannot send special keys, such as Ctrl+Alt+Del
Here is the patch useful to send special keys that your graphical user interface intercepts at low level, such as ctrl-alt-del in X Window. This patch adds a command "sendkey" to deal with it in the monitor, you can send keys to the vm. Use - to press several keys simultaneously. Example: sendkey ctrl-alt-f1 Signed-off-by: Dan Xu <dan.d.xu@intel.com> Signed-off-by:
2008 Jun 03
2
Partitioning a large data frame and writing output CSVs
Hello, I have a large dataset [536436,4] I'd like to partition the dataset into 999 groups of 564 rows and output each group as a CSV files... Obviously I could do this longhand but I know it is somehow possible to write a loop to do the same thing... I'd like to group such that the first group is the first 564 rows, the second group is the second 564 rows ..... the 999th group is the 999th 564 rows... In each newly created group, I'd like there to be a new col...
2007 Mar 20
0
[LLVMdev] Google SOC - Idea
...ed to do so. To this end, I have dabbled in a wide range of fields from databases, to statistical analysis, to GUI applications, to web applications, and more. Examples of this work are an anti-censorship, in-browser web-browser (it's ridiculous, I know, but darn useful) [http://palary.com] and Longhand a calculator program for OS X [http://longhand.palary.com]. I have also worked for a number of clients developing GUI applications, data analysis applications, and web applications. I became interested in the area of language development as a result of a desire for better tools to deal with the en...
2007 Mar 19
5
[LLVMdev] Google SOC - Idea
Getting the front end for Fortran finished is definitely something I would be interested in working on. I will draft up a little proposal and send it out to this list. -Scott On 3/19/07, Kenneth Hoste <kenneth.hoste at ugent.be> wrote: > Hi Scott, > > On 18 Mar 2007, at 04:22, Scott Fortmann-Roe wrote: > > > Hi, > > > > I noticed that LLVM had signed up as a
2007 Mar 22
2
[LLVMdev] Google SOC - Fortran Front-End Application
...so. To this end, I have dabbled in a wide range of fields from databases, to statistical analysis, to GUI applications, to web applications, and more. Examples of this work are an anti-censorship, in-browser web-browser [Palary Browser -- http://palary.org] and a unique calculator program for OS X [Longhand -- http://longhand.palary.com]. I have also worked for a number of clients developing GUI applications, data analysis applications, and web applications. I became interested in the area of language development as a result of a desire for better tools to deal with the environmental modeling and eco...
2020 Oct 06
0
Re: [PATCH libnbd] info: Write output atomically.
...cho EIO fail >&2; exit 1' \ > + --run '$VG nbdinfo --size "nbd+unix:///?socket=$unixsocket"' > $out ||: nbdkit added $uri in 1.14, and the eval plugin in 1.18. You could shorten this to --run '$VG nbdino --size "$uri"'. (We still use the longhand elsewhere because of older RHEL having older nbdkit, but this will already be skipped on those setups). -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3226 Virtualization: qemu.org | libvirt.org
2020 May 18
2
dsync multiple mailboxes per connection?
Hello, Is it possible to batch syncs of multiple mailboxes in a single dsync session? We?re transferring users between servers and want to use dsync to transfer the mail; ideally we?d like to avoid creating a separate TCP connection per user. Thank you! cheers, -Felipe Gasper
2005 Dec 17
1
Adding model attribute without db field
I need to add an attribute to a model but there is no need to add a corresponding database field. The model is a child of ActiveRecord and it corresponds to a table in my DB but when I add it in the usual Ruby way, I get a ''number of redirects exceeded'' error. Here is my code; The model; class Category < ActiveRecord::Base attr :status end The controlller;
2007 Feb 24
0
after_create not creating the right object
...se after_create :create_forum has_one :forum def self.create_forum # create it (taken from console) @f = Forum.new(:title => ''Forum'', :club_id => self.id) @f.save @f.type = ''Forum'' @f.save end end Now I know this is a bit "longhand", but if I do it from the console as it is there, I end up with the right data in the table e.g. title, club_id and type are correct. But if I create it via Club.create, it doesn''t put in the type at all, thus making the application fail. Success should put a record in the clubs tab...
2020 Oct 06
2
[PATCH libnbd] info: Write output atomically.
If the server fails, nbdinfo can write partial output before the error message (albeit on different channels). Here is an example: $ nbdkit eval open='echo EIO fail >&2; exit 1' --run 'nbdinfo --json "$uri"' { "protocol": "newstyle-fixed", "TLS": false, nbdkit: eval[1]: error: /tmp/nbdkitii3pZW/open: fail nbdkit: eval[1]:
2019 Aug 14
1
Re: [PATCH libnbd 1/4] api: Combine callback and user_data into a single struct.
...add an optional free callback (C already allows initializers with 1, 2, or 3 members set, but writing a variable-argument macro to do the same gets rather hairy - it can be done with the help of intermediate macros, but that's a lot to cram into libnbd.h). So I guess we just let this form stay longhand. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3226 Virtualization: qemu.org | libvirt.org
2006 Nov 05
2
solution to a regression with multiple independent variable
Please forgive a statistics question. I know that a simple bivariate linear regression, y=f(x) or in R parlance lm(y~x) can be solved using the variance-covariance matrix: beta(x)=covariance(x,y)/variance(x). I also know that a linear regression with multiple independent variables, for example y=f(x,z) can also be solved using the variance-covariance matrix, but I don't know how to do this.
2011 May 05
4
Using functions/loops for repetitive commands
...e~hiv) but there must be some easy way of looping/automating this code (i.e. get all the continuous variables analysed one by one by sex, then analysed one by one by hiv status). Obviously my actual dataset is considerably bigger than what is shown here - I have many variables to assess making the longhand instruction to do every test pretty unsatisfactory. I think I can use ?for? or some other looping command for this purpose but I can?t work out how. I think I don?t properly understand how loops work yet as I'm still quite new to R. Please could someone help ? ideally with an explanation and...
2019 Aug 11
4
[PATCH libnbd v2 0/3] python: Add test for doing asynch copy.
v1 was here: https://www.redhat.com/archives/libguestfs/2019-August/msg00103.html In v2 I've made several changes: - Fix Python callbacks so if they don't return something which is int-like, we assume they mean to return 0. - Add nbd.Buffer free() method. Read commit message in patch 2 to see what this is about. - Fixed the asynch copy test to deal with the unbelievably
2019 Aug 14
2
Re: [PATCH libnbd 1/4] api: Combine callback and user_data into a single struct.
On 8/13/19 5:36 PM, Richard W.M. Jones wrote: > The definition of functions that take a callback is changed so that > the callback and user_data are combined into a single structure, eg: > > int64_t nbd_aio_pread (struct nbd_handle *h, > void *buf, size_t count, uint64_t offset, > - int (*completion_callback) (/*..*/), void *user_data, > +
2009 Sep 15
3
[LLVMdev] My LLVM Project
.... The 'var' keyword declares a variable ('let', by contrast declares a constant, which can be local, similar to Java's 'final'). In this case, the type is omitted (you could say "var sum:int = 0" if you wanted to be explicit.) You could also write this out longhand: def sum(nums:int...) -> int { var sum = 0; let iter = nums.iterate(); repeat { classify iter.next() { as i:int { sum += i; } else { break; } } } return sum; } Since the iter assignment nev...
2018 Nov 29
6
[nbdkit PATCH 0/3] Fix %m usage on BSD
Our use of "%m" in various error messages is testament to the project's initial life on Linux - but other than Cygwin, I know of no other platforms supporting that glibc extension. We COULD audit the code and manually turn "%m" into "%s"/strerror(errno), but that's a lot of churn. Instead, let's fix the few outliers that can't be easily wrapped, then
2015 Jul 23
37
[Bug 2434] New: scp can send arbitrary control characters / escape sequences to the terminal
https://bugzilla.mindrot.org/show_bug.cgi?id=2434 Bug ID: 2434 Summary: scp can send arbitrary control characters / escape sequences to the terminal Product: Portable OpenSSH Version: 6.7p1 Hardware: Other OS: Linux Status: NEW Severity: security Priority: P5
2007 May 31
28
Another attempt for a succinct model validation DSL
On 5/28/07, David Chelimsky <dchelimsky at gmail.com> wrote: > The behaviour you''re trying to describe is that the User should > require that passwords bear certain qualities - in this case a length > between 5 and 40. So you need to ask yourself how the User should > behave when this requirement is violated, and then specify that it > behaves that way. > >