Sponsored Content
The Lounge What is on Your Mind? Interested in bike riding !!! share your exp.. Post 302254976 by bakunin on Wednesday 5th of November 2008 03:44:04 PM
Old 11-05-2008
For the longest time i used to drive a Suzuki 750 GHN "Water Buffalo", heavily customized with a Rickman construction-set frame and a 6-gear gearbox. It was one of the big (3cyl., 750ccm) two-strokes which ruled the streets in the eighties. After tuning it was worth 145hp (back then this was next to unlimited) and because of the water cooling (hence the nickname) the chance of a piston jamming was next to nil. i remember this was quite different with the parallel Kawasaki model, the H1, which had an air-cooled motor of the same dimension. The middle cylinder regularly had thermic problems and the piston seizures quite regular.

About 6 years back i was >< that far away of purchasing one of the then-new Suzuki GSX1300-R, the Hayabuza. There is an NOx option with some additional customizing sold by a tuner here which claims to boost the power to roughly 240hp and the top speed to ~320km/h (~200mph). They claim to do away with the miles-long acceleration phase to get this big bike past the 300km/h barrier. Everything was set already, but my daughter kept me from buying it. Maybe i missed some fun but it sure kept her happy - and since a year or so i can imagine myself on something less fast and more comfortable - i guess i am getting old and senile now. ;-))

bakunin
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Extremely Interested

As i was reading an article on being a "HACKERS" which was 30 minutes ago thinking that HACKING was the same as CRACKING, after the reading i discovered their difference, a hacker builds the internet while crackers just cracks and annoy like phreaking and breaking into people's computer. That... (5 Replies)
Discussion started by: Punk18
5 Replies

2. UNIX for Dummies Questions & Answers

Interested, but lost.

Alright, so I'm interested in using Unix, but I have a couple of pretty basic questions: 1) What's the relationship between Linux and Unix? Are they one and the same, or completely different? 2) Can you use Unix on a laptop? and 3) Where can you get Unix? Thanks for listening. (9 Replies)
Discussion started by: Ned
9 Replies

3. Shell Programming and Scripting

Over-riding TRAP in Child

Hi, I'm using Ksh on HP 10.2. My parent shell script has ignored INT signal using trap command. trap "" 2 3 .... (other signals) This script calls another script in which INT signal should be active and should not be ignored. I browsed the net and found out that in ksh, once a... (1 Reply)
Discussion started by: anijog
1 Replies

4. Shell Programming and Scripting

Interested in getting new projects

Hi , I am interested in getting some new projects on shell scripting . Can some one suggest me some bidding site where I can get the projects. Regards (0 Replies)
Discussion started by: himvat
0 Replies

5. UNIX for Dummies Questions & Answers

extract a part of a path like (input: /etc/exp/home/bin ====> output: exp)

Hi, I need to make some extraction . with the following input to get the right output. input: /etc/exp/home/bin ====> output: exp and input: aex1234 ===> output: ex Thanks for your help, (4 Replies)
Discussion started by: yeclota
4 Replies

6. What is on Your Mind?

In which sport are you interested?

I am swimmer and also gym is here . What sport do you practice ? (8 Replies)
Discussion started by: solaris_user
8 Replies

7. Shell Programming and Scripting

Help with data reformat if share share content

Input data: read1_data1 read1_data1 read2_data1 read3_data1 read4_data1 read4_data1 read4_data1 read5_data1 . . Desired output result: read1_data1 read1_data2 read2_data1 read3_data1 read4_data1 (3 Replies)
Discussion started by: perl_beginner
3 Replies
frexp(3M)						  Mathematical Library Functions						 frexp(3M)

NAME
frexp, frexpf, frexpl - extract mantissa and exponent from a floating-point number SYNOPSIS
c99 [ flag... ] file... -lm [ library... ] #include <math.h> double frexp(double num, int *exp); float frexpf(float num, int *exp); long double frexpl(long double num, int *exp); DESCRIPTION
These functions break a floating-point number into a normalized fraction and an integral power of 2. They store the integer exponent in the int object pointed to by exp. RETURN VALUES
For finite arguments, these functions return the value x, such that x is a double with magnitude in the interval [1/2, 1) or 0, and num equals x times 2 raised to the power *exp. If num is NaN, NaN is returned and the value of *exp is unspecified. If num is +- 0, +- 0 is returned and the value of *exp is 0. If num is +-Inf, num is returned and the value of *exp is unspecified. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
isnan(3M), ldexp(3M), modf(3M), attributes(5), standards(5) SunOS 5.11 12 Jul 2006 frexp(3M)
All times are GMT -4. The time now is 03:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy