search for: exaggerate

Displaying 20 results from an estimated 174 matches for "exaggerate".

Did you mean: exaggerated
2006 Jul 07
5
Mongrel Debian packages
Hi all, I just wanted to let you know that I built some Debian (Sarge) packages to allow an apt-get only installation of Mongrel, Ruby and friends. Also contained is an init script that is capable of managing multiple applications. Support for the Pen load balancer is also included. More info can be found there:
2020 Jul 14
3
Stir Shaken
...ant to sign calls. It will force them to make sure they know who their customers are, and make it impossible for those customers to escape consequences if they misbehave." There is Law of The Land that is about to take effect. Use google and search "stir shaken" Whoever thinks I am exaggerated is dreaming. Also: it is true that my service is the only one for asterisk --worldwide. The model proposed by Transexus (302 redirect with a new header) can't be used by Asterisk. But don't take my word for it: https://issues.asterisk.org/jira/browse/ASTERISK-28924 > --------------...
2017 Oct 19
1
overlaying points and lines on a surface3d rgl plot with axes
Hi R users and experts, I am interested in learning more about the use of 3D plots. Specifically, I want to add points and lines to a surface plot. And get the axes and labels plotted also. Here is what I have tried with an example data set : library(rgl) vol2 <- 2*volcano # Exaggerate the relief library(reshape) mvol2 <- melt(vol2) str(mvol2) # First, persp and persp3d plots do not succeed #persp(mvol2$X1,mvol2$X2,vol2,xlab="X2",ylab="X1",zlab="value",axes=TRUE,ticktype="detailed",cex.lab=1) persp3d(mvol2$X2,mvol2$X1,vol2,axes=TRUE) # E...
2016 Apr 18
4
Suddenly increased my hard disk
...list_only_ the deleted files that are still open. That's exactly the same thing that "ls -l /proc/*/fd/* | grep '(deleted)'" will do. So how is lsof better, exactly? I know. I'm frustrated today. I spent the weekend dealing with people nit-picking. It's hard to exaggerate how much time and energy can be wasted by people insisting on meaningless changes.
2017 Oct 31
3
Using C++14 code in LLVM
...ld still build > clang 6 with the system compiler and then build Clang ToT. > > Every relaxation of the kind of code we can use in LLVM does not > necessitate an extra hop in the bootstrapping process, because existing > versions of clang can already compile through C++20. I hate to exaggerate, but this sounds almost like an argument for using new C++ features the day after we implement them. There obviously has to be some balance here.
2008 May 07
1
What Happened to Compiz in (compiz-0.7.4-11.1)
...eems to have changed in the last release and for the worse. On narrow windows, title bar now expands and contracts big time which has radically changed the look of the effect. If you grab the title bar on the far left or right and move it around a little bit, the corner where you grab will have exaggerated movement compared to the remainder of the title bar. It looks really crazy. Is this a change? Is this a bug? Is there an option that will minimize one end of the title bar moving more than the other? -- David C. Rankin, J.D., P.E. Rankin Law Firm, PLLC 510 Ochiltree Street Nacogdoches, Texas 7...
2002 Nov 03
1
Roaming profiles - How to turn them off?
Is there anything simple to turn them off? Normally I don't mind roaming profiles, but considering how large mine have a tendency to get, I'm not waiting an hour (exaggerated, but close enough) to log in. So, just wondering if there's anything simple to turn them off. I haven't been able to find anything looking through the various texts I've been reading. Now that I've got the actual connecting to the domain issues resolved, I'm attempting to ta...
2006 Apr 06
1
Run away samba, and free() errors
Hi, I'm running samba 3.0.22, and have reproduced this issue in 3.0.14a as well. I am trying to access a network share with a large number of long directory names (up to around 80 characters), with around 1100 of these directories. Some times it works, but most of the time, the windows machine (running windows server 2003) never gets the listing. It seems to try to reconnect, and samba starts
2000 Oct 24
1
(no subject)
>>You need a set_ogg_malloc_handler(). That's it as far as the API goes. > >Assuming you consider it acceptable to store that information in >global variables. > malloc() is currently a global function, so the situation is unchanged by having a global name that refers to malloc() or a work-alike. Atleast, this very much seems to me to be the case. Of course you actually
2015 Dec 30
2
Signaling ringing on other extension
...0 then you have set up the phone correctly. Unfortunately the Watchers are 0... And I didn't find any option on my phone (Thomson ST2022) to enable the BLF... Any other idea? I wrote a little expect-Script to send the phone an advice and having an LED blinking, but I think it is a little bit exaggerated... Thanks Luca Bertoncello (lucabert at lucabert.de)
2007 Oct 23
1
Custom colourkey spacing in levelplot, contourplot
Dear R gurus, I have got stuck on how to customise the colorkey generated by levelplot and contourplot, in the lattice package. This best illustrated by an example: library(lattice) levelplot(volcano^20/1e45,at=c(0,0.001,0.01,0.1,1,10)) The reason for raising the volcano dataset to the 20th power is to create a dataset with a large vertical exaggeration - this is similar in nature to the data
2016 Oct 04
2
Using C++14 code in LLVM
...ore reason to start to be more conservative when it comes to shiny new features. Making it a nightmare to merge new GPU drivers because some silly infrastructure project decides to run after every new language feature is a very good way to screw up a project's reputation. This might be somewhat exaggerated, but not that far from the truth. Joerg
2010 Jul 14
1
FYI: matrix surprise
Some time ago someone asked for things that make R difficult to master. Here I want to record one R behavior that took me off-guard yesterday. Moral of the story: vectorialize, but don't exaggerate. Hope it helps mario ### A very simple data frame tc <- textConnection( "prefix idx val A 1 11 A 2 22 B 1 33 B 2 44") s <- read.table(tc, stringsAsFactors=FALSE, header=TRUE) close(tc) print(s) ### Matrix I want to fill with the data frame values y...
2012 May 02
1
rgl.Sweave not producing transparency in pdf plots with alpha
...tput (correct transparency) % <<echo=FALSE, grdevice=rgl.Sweave, fig=TRUE, width=5, height=5, resolution=100>>= <<echo=FALSE, grdevice=rgl.Sweave, fig=TRUE, width=5, height=5, resolution=100, outputtype=pdf, pdf=TRUE>>= library(rgl) data(volcano) z <- 2 * volcano # Exaggerate the relief x <- 10 * (1:nrow(z)) # 10 meter spacing (S to N) y <- 10 * (1:ncol(z)) # 10 meter spacing (E to W) zlim <- range(y) zlen <- zlim[2] - zlim[1] + 1 colorlut <- terrain.colors(zlen) # height color lookup table col <- colorlut[ z-zlim[1]+1 ] # assign colors to heights...
2019 May 09
2
Password database - external verification
Hi all, I'm currently using a PostgreSQL database for my user/password db, directly from dovecot. The trouble with that is that I'm stuck with whatever hash algorithms dovecot supports - which IIRC means (a subset of?) what libc has been compiled with, which can be a bit restrictive. So I'd like to use an external tool, which would also let me integrate other applications (eg web
2002 Jul 24
1
"account not authorized to log in from this station" - What's wi th this?
...tion dialog box. > Given the smb.conf file, below, it seems like I shouldn't. At any rate it > fails when using a username/password that exists on samba box and that is > member of root. The message I get is in the subject line of this post. > > If I understand correctly, and to exaggerate a little, anyone in this > galaxy who is connected to my lan via tcp/ip ought to be able to access > humphry, palmdata and printers. > > Any ideas?? > > Thanks > John Clay > > # Samba config file created using SWAT > # from localhost (127.0.0.1) > # Date: 2002/07...
2008 Jun 21
1
question on rgl.surface
...loor(min(d3.mat[,1])),ceiling(max(d3.mat[,1])),floor(min(d3.mat[,3])),ceiling(max(d3.mat[,3]))),nrow = 2, ncol =2) rgl.surface(x, z, y, color="grey", back="lines") What am I doing wrong? And, while I'm at it, there is another minor question I have, which is "how can I exaggerate the size difference in the spheres between front and back?" Thanks, Mark -- Mark W. Kimpel MD ** Neuroinformatics ** Dept. of Psychiatry Indiana University School of Medicine 15032 Hunter Court, Westfield, IN 46074 (317) 490-5129 Work, & Mobile & VoiceMail (317) 663-0513 Home (no...
2017 May 01
3
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
On 30/04/2017 12:23 PM, Duncan Murdoch wrote: > No, I don't think anyone is working on this. > > There's a fairly simple workaround for the UTF-16 and UTF-32 iconv > issues: don't attempt to produce character vectors, produce raw vectors > instead. (The "toRaw" argument to iconv() asks for this.) Raw vectors > can contain embedded nulls. Character vectors
2008 Apr 12
2
newbie qs - can one implement speex for Google Android?
Anil Philip <goodnewsforyou at yahoo.com> wrote: see http://code.google.com/android It would be good of members from here will step in and offer google help to implement speex. Without exaggeration, android will transform the mobile world. Ivo Emanuel Gon?alves <justivo at gmail.com> wrote: On Fri, Apr 11, 2008 at 10:58 PM, Anil Philip wrote: > I recommended in a bug report that
2007 Jul 05
0
universally
...for your work man. And, knowing his past success with science, one further imagines that this is the device that will finally destroy New Orleans. Wagoner's languid delivery of the song is terrifying: he genuinely sounds as though he were fighting the urge to gibber by phrasing his words with exaggerated care. Or is that FRIED and eaten? They both abused our Bill of Rights. You can sample the tracks there at Amazon. Mysterian many hours of pleasure. You know I had forgotten this song. If you had not heard of it, that line was a reference to a New Orleans haunted housae run by Pantera. Hope ever...