search for: faeries

Displaying 8 results from an estimated 8 matches for "faeries".

Did you mean: aeries
2017 Dec 15
0
Wine release 3.0-rc2
The Wine development release 3.0-rc2 is now available. What's new in this release (see below for details): - Bug fixes only, we are in code freeze. The source is available from the following locations: https://dl.winehq.org/wine/source/3.0/wine-3.0-rc2.tar.xz http://mirrors.ibiblio.org/wine/source/3.0/wine-3.0-rc2.tar.xz Binary packages for various distributions will be available
2004 Jun 15
2
Multiple X100Ps -- order?
After over a month (well, ok, no more than an hour a day :) of planning, getting hardware, tinkering and testing, I'm about to my Ultimate Home Phone System (tm) online. Connectivity to the outside world is provided by: A. 1 POTS phone line connected through an X100P ($11/month, needed to carry DSL) B. 1 Vonage ATA186 connected through an X100P (needed for the rate center :( ) C. 3 Broadvoice
2018 Mar 18
0
Wine release 2.0.5
The Wine maintenance release 2.0.5 is now available. What's new in this release (see below for details): - Various bug fixes The source is available from the following locations: https://dl.winehq.org/wine/source/2.0/wine-2.0.5.tar.xz http://mirrors.ibiblio.org/wine/source/2.0/wine-2.0.5.tar.xz Binary packages for various distributions will be available from:
2012 Mar 16
0
Wine release 1.5.0
The Wine development release 1.5.0 is now available. What's new in this release (see below for details): - New version of the Gecko engine. - Partial support for using the Trash on Mac OS X. - Support for path gradients in GdiPlus. - Various MSXML improvements. - Fixes to 64-bit exception handling. - Various bug fixes. The source is available from the following locations:
2012 Jun 22
0
Wine release 1.5.7
The Wine development release 1.5.7 is now available. What's new in this release (see below for details): - New version of the Gecko engine based on Firefox 13. - Dynamic device support with UDisks2. - More stream classes implemented in the C++ runtime. - Support for metadata in TIFF files. - Fleshed out WBEM implementation. - Improved support for printer paper sizes. - Various
2007 Dec 06
43
Mocks? Really?
OK, so i''ve played a bit with mocks and mock_models in controller and view tests and i have a question. Is this statement really correct: "We highly recommend that you exploit the mock framework here rather than providing real model objects in order to keep the view specs isolated from changes to your models." (http://rspec.rubyforge.org/documentation/rails/writing/views.html
2012 Nov 30
1
can't integrate in loop
Hi guys! I have to compute something and i don't know what i'm doing wrong. my code is a bit complex, but imagine that is something like this: a = c(1 2 3 4) ia = length(a) x = seq(1,100,length=0.1) ib = length(x) for(j in 1:ia) { H = function(x) {sen(x) + a[j]} for(i in 1:ib) { int = function(x) { integrate(H, lower = 0, upper = x[i])} int1[i] = int(1) } end
2012 Nov 30
3
loop function and integrate?
Hi guys! I have to compute something and i don't know what i'm doing wrong. my code is a bit complex, but imagine that is something like this: a = c(1,2,3,4) ia = length(a) x = seq(1,100,length=0.1) ib = length(x) int1 = numeric(ib) b = numeric(ib) for(j in 1:ia) { H = function(x) {sin(x + a[j])} for(i in 1:ib) { int = integrate(H, lower = 0, upper