. */ # Known/outstanding issues: # [UNCONFIRMED ISSUE] Plugin seems to keep pinging when importing an XML/WXR file even if pinging is disabled # Plugin does not seem to report any errors if it cannot write to the log file (see E2 blog for example) function SUP_add_options_page(){ if(function_exists("add_options_page")) add_options_page("UP Smart Update Pinger", "UP Smart Update Pinger", 5, basename(__FILE__), "SUP_show_options_page"); } function SUP_show_options_page(){ global $logfile; $ping = get_option("SUP_ping"); $pinglog = get_option("SUP_pinglog"); $uris = get_option("ping_sites"); $forcedpings = false; $SUP_output_log=''; $pingservicesnow = "Ping Services Now!"; $deletelogfile = "Delete Log File"; if(isset($_POST["ping"]) && $_POST["ping"] == $pingservicesnow){ $forcedpings = true; SUP_log(SUP_ping_services($forcedpings).strftime("%D %T")."\tForced pinging services (Homepage)\n\t─────\n"); }elseif(isset($_POST["submit"])){ $uris = $_POST["uris"]; $ping = 0; if($_POST["ping"] == 1) $ping = 1; $pinglog = 0; if($_POST["pinglog"] == 1) $pinglog = 1; update_option("SUP_ping", $ping); update_option("SUP_pinglog", $pinglog); update_option("ping_sites", $uris); echo '

Options saved.

'; }elseif(isset($_POST["delete"]) && $_POST["delete"] == $deletelogfile){ $fh = @fopen($logfile, "w"); if(false === @fwrite($fh, strftime("%D %T")."\tLog file deleted\n\t─────\n")){ update_option("SUP_error", 1); }else{ update_option("SUP_error", 0); } @fclose($fh); } $checked1 = ''; if($ping == 1) $checked1 = 'checked="checked"'; $checked2 = ''; if($pinglog == 1) $checked2 = 'checked="checked"'; echo '

Ultimate Plugins Smart Update Pinger

Click here for installation instructions

Click here for usage instructions

Click here for updated versions

Click here for comments and suggestions

URIs to Ping

The following services will automatically be pinged/notified when you publish normal or future timestamped posts. Not when you edit previously published posts, as WordPress does by default.

This plugin also fixes an issue with the default extended ping programming in Wordpress and pre-2.1 versions of Smart Update Pinger (it now includes the url of the new post).

NB: this list is synchronized with the original update services list.

Separate multiple service URIs with line breaks:

Ping log

These are the last 100 actions performed by the plugin. In reverse chronological order for easier reading (latest ping first).

'; SUP_get_last_log_entries(500); echo '

'; } # telling WordPress to ping if the post is new, but not if it's just been edited function SUP_ping_if_new($id){ global $wpdb, $post_title; $SUP_output_log="\t─────\n"; $SUP_ping_result=''; $forcedpings = false; if(get_option('SUP_ping') == 1 && trim(get_option('ping_sites')) != ""){ # fetches data directly from database; the function "get_post" is cached, and using it here will get the post as is was before the last save $row = mysql_fetch_array(mysql_query( // "SELECT post_date,post_modified,post_title,guid FROM $wpdb->posts WHERE id=$id")); "SELECT post_date,post_modified,post_title FROM $wpdb->posts WHERE id=$id")); # if time when created equals time when modified it is a new post, otherwise the author has edited/modified it if(!$row["post_title"]){ $SUP_output_log=strftime("%D %T")."\tNOT Pinging services (ERROR: YOU HAVE FORGOTTEN TO ENTER A POST TITLE) ...\n".$SUP_output_log; }else{ if($row["post_date"] == $row["post_modified"]){ $SUP_output_log=strftime("%D %T")."\tPinging services (New normal post: “".$row["post_title"]."”) ...\n".$SUP_output_log; $SUP_output_log=SUP_ping_services($forcedpings,get_permalink($id)).$SUP_output_log; # Try commenting the line above, and uncommenting this line below if pinging seems to be out of order. Please notify the author if it helps! # generic_ping(); }else{ // Post has been edited or it's a future post // If we have a post title it means that we are in the normal WP loop and therefore it was an edit (not a future post) if($post_title){ $SUP_output_log=strftime("%D %T")."\tNOT Pinging services (Existing post was edited: “".$row["post_title"]."”) ...\n".$SUP_output_log; }else{ $SUP_output_log=strftime("%D %T")."\tPinging services (New timestamped post: “".$row["post_title"]."”) ...\n".$SUP_output_log; $SUP_output_log=SUP_ping_services($forcedpings,get_permalink($id)).$SUP_output_log; # Try commenting the line above, and uncommenting this line below if pinging seems to be out of order. Please notify the author if it helps! # generic_ping(); } } } }else{ if (trim(get_option('ping_sites')) != ""){ $SUP_output_log=strftime("%D %T")."\tNOT Pinging services (WARNING: DISABLED BY ADMINISTRATOR)\n".$SUP_output_log; }else{ $SUP_output_log=strftime("%D %T")."\tNOT Pinging services (WARNING: EMPTY PING SERVICES LIST)\n".$SUP_output_log; } } SUP_log($SUP_output_log); } # More or less a copy of WP's "generic_ping" from functions.php, but uses another function to send the actual XML-RPC messages. function SUP_ping_services($forcedpings,$SUP_guid = ''){ $SUP_output_log=''; #$services = get_settings('ping_sites'); #UP - 17.07.07 - get_option is newer/better then get_settings $services = get_option('ping_sites'); $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines $services = trim($services); if ( '' != $services ) { $services = explode("\n", $services); foreach ($services as $service) $SUP_output_log=SUP_send_xmlrpc($forcedpings,$SUP_guid,$service).$SUP_output_log; } return $SUP_output_log; } # A slightly modified version of the WordPress built-in ping functionality ("weblog_ping" in functions.php). # Original version: #function weblog_ping($server = '', $path = '') { #global $wp_version; #include_once(ABSPATH . WPINC . '/class-IXR.php'); #// using a timeout of 3 seconds should be enough to cover slow servers #$client = new IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path)); #$client->timeout = 3; #$client->useragent .= ' -- WordPress/'.$wp_version; #// when set to true, this outputs debug messages by itself #$client->debug = false; #$home = trailingslashit( get_option('home') ); #if ( !$client->query('weblogUpdates.extendedPing', get_option('blogname'), $home, get_bloginfo('rss2_url') ) ) // then try a normal ping #$client->query('weblogUpdates.ping', get_option('blogname'), $home); #} # This one uses correct extendedPing format (WP does not), and logs response from service. function SUP_send_xmlrpc($forcedpings,$SUP_guid = '',$server = '', $path = ''){ global $wp_version; $SUP_output_log=''; include_once (ABSPATH . WPINC . '/class-IXR.php'); // using a timeout of 5 seconds should be enough to cover slow servers (changed from 3 to 5) $client = new IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path)); $client->timeout = 5; $client->useragent .= ' -- WordPress/'.$wp_version; // when set to true, this outputs debug messages by itself $client->debug = false; $home = trailingslashit( get_option('home') ); # The extendedPing format should be "blog name", "blog url", "check url" (the new URL), and "feed url". # Related Website(s) # http://www.weblogs.com/api.html # An example: # Someblog - Title # http://spaces.msn.com/someblog - Home URL # http://spaces.msn.com/someblog/PersonalSpace.aspx?something - Check/New URL # http://spaces.msn.com/someblog/feed.rss - Feed # Changed the following line therefore: # if($client->query('weblogUpdates.extendedPing', get_settings('blogname'), $home, get_bloginfo('rss2_url'), get_bloginfo('rss2_url'))) if ($forcedpings){ # If this is a forced ping it's better to use a regular ping for the homepage without an update URL (safer) if($client->query('weblogUpdates.ping', get_option('blogname'), $home)){ $SUP_output_log=strftime("%D %T")."\t► [Regular Ping] ".$server." was successfully pinged\n".$SUP_output_log; if (get_option('SUP_pinglog') == 1){ $SUP_output_log=strftime("%D %T")."\t►► Blogname: '".get_option('blogname')."'\n".$SUP_output_log; $SUP_output_log=strftime("%D %T")."\t►► Homepage: '".$home."'\n".$SUP_output_log; } }else{ $SUP_output_log=strftime("%D %T")."\t► ".$server." could not be pinged. Error message: “".$client->error->message."”\n".$SUP_output_log; } }else{ if($client->query('weblogUpdates.extendedPing', get_option('blogname'), $home, $SUP_guid, get_bloginfo('rss2_url'))){ $SUP_output_log=strftime("%D %T")."\t► [Extended Ping] ".$server." was successfully pinged\n".$SUP_output_log; if (get_option('SUP_pinglog') == 1){ $SUP_output_log=strftime("%D %T")."\t►► Blogname: '".get_option('blogname')."'\n".$SUP_output_log; $SUP_output_log=strftime("%D %T")."\t►► Homepage: '".$home."'\n".$SUP_output_log; $SUP_output_log=strftime("%D %T")."\t►► Updated : '".$SUP_guid."'\n".$SUP_output_log; $SUP_output_log=strftime("%D %T")."\t►► RSS URL : '".get_bloginfo('rss2_url')."'\n".$SUP_output_log; } }else{ # pinging was unsuccessful, trying regular ping format if($client->query('weblogUpdates.ping', get_option('blogname'), $home)){ $SUP_output_log=strftime("%D %T")."\t► [Regular Ping] ".$server." was successfully pinged\n".$SUP_output_log; if (get_option('SUP_pinglog') == 1){ $SUP_output_log=strftime("%D %T")."\t►► Blogname: '".get_option('blogname')."'\n".$SUP_output_log; $SUP_output_log=strftime("%D %T")."\t►► Homepage: '".$home."'\n".$SUP_output_log; } }else{ $SUP_output_log=strftime("%D %T")."\t► ".$server." could not be pinged. Error message: “".$client->error->message."”\n".$SUP_output_log; } } } return $SUP_output_log; } $post_title = ""; # Receives the title of the post from a filter below function SUP_post_title($title){ global $post_title; $post_title = $title; return $title; } # Log $logfile = ABSPATH . 'wp-content/plugins/ultimate-plugins-smart-update-pinger/ultimate-plugins-smart-update-pinger.log'; function SUP_log($SUP_log_output){ global $logfile; $logerror = 0; $fh = @fopen($logfile, "a"); if(false === @fwrite($fh, $SUP_log_output)){ update_option("SUP_error", 1); }else{ update_option("SUP_error", 0); } @fclose($fh); } function SUP_get_last_log_entries($num){ global $logfile; $lines = @file($logfile); if(get_option("SUP_error") == 1){ $fh = @fopen($logfile, "a"); if(false === @fwrite($fh, "")){ echo "Error writing log file (".$logfile."). Most likely your logfile (".$logfile.") is write-protected and no log data can be saved (change the rights of this file to 777), or alternatively this could mean that you have manually removed the log file, or that you have changed the directory or file name of the plugin (they both should be 'ultimate-plugins-smart-update-pinger')"; }else{ // Original: $lines = array_slice($lines, count($lines) - $num); // Modified to show in reverse order (easier for reading) $lines = array_reverse(array_slice($lines, count($lines) - $num)); $msg = ""; foreach($lines as $line){ $msg.=trim($line)."
"; } echo $msg; } @fclose($fh); }else{ if($lines === false){ echo "Error reading log file (".$logfile."). Most likely you have manually removed the log file, or alternatively this could mean that the logfile (".$logfile.") is read-protected (change the rights of this file to 777), or that you have changed the directory or file name of the plugin (they both should be 'ultimate-plugins-smart-update-pinger')"; }else{ // Original: $lines = array_slice($lines, count($lines) - $num); // Modified to show in reverse order (easier for reading) $lines = array_reverse(array_slice($lines, count($lines) - $num)); $msg = ""; foreach($lines as $line){ $msg.=trim($line)."
"; } echo $msg; } } } # adds a filter to receive the title of the post before publishing add_filter("title_save_pre", "SUP_post_title"); # shows the options in the administration panel add_action("admin_menu", "SUP_add_options_page"); # calls SUP_ping whenever a post is published add_action("publish_post", "SUP_ping_if_new"); # calls SUP_ping_draft when changing the status from private/draft to published # add_action("private_to_published', 'SUP_ping_draft'); # removes the "WordPress official" pinging hook remove_action("publish_post", "generic_ping"); # activates pinging if setting doesn't exist in database yet (before the user has changed the settings the first time) if(get_option("SUP_ping") === false){update_option("SUP_ping", 1);} if(get_option("SUP_pinglog") === false){update_option("SUP_pinglog", 1);} if(get_option("SUP_error") === false){update_option("SUP_error", 0);} ?> Boards | Kite 2012
Saturday, April 27, 2024

Kite 2012

Kitesurfing News Year 2012-2016!

Archive for the ‘Boards’ Category

Navis Boards “Foucan” 132×41 Review

Posted by kite2012 On August - 28 - 2012

Navis Boards is a small company in Sweden that has challenged the big dragons on the kiteboard market. The boards from Navis Boards stand out from the crowd in two ways that are obvious at the first glance. The boards alone are handmade and made purely from environmentally friendly materials which give them their nice woodish look. So what about the performance then? I have already been riding the board named “Bolt” for some time. An allround medium sized board that is suitable for the beginner as well as the intermediate rider, a compromise between a lightwind board and a freestyle board. “Foucan” on the other hand is a board aimed for the more advanced rider that prefer a smaller and stiffer board that allows him to perform tricks with ease. You might have you heard the name Foucan from the somewhat odd sport named Le-Parkour. In this field Foucan is the name of a guy that is known for his outstanding skills in Le-Parkour, hence “Foucan” is a board designed with this guy in mind, a board for the one that likes to have fun on the water while jumping around and performing tricks. Anyway, let´s take a closer look on the characteristics and performances of the “Foucan”!

Flexibility

The Foucan is a stiff board. Not super stiff, but stiff enough to make it easy to achieve good pop, great for unhooked tricks and all kind of tricks, such as the backroll, where you need to set yourself in a rotation. Foucan is designed with Navis Boards new unique “spring technology” which further improves the pop force. This technology can be seen as the black arcs on the board. These arcs are working both as reinforcement for the board while providing the board with extra spring effect.

Upwind abilities

The size of the Foucan is 132×41 (136×42 is also available). Shorter boards are not known to make it easier to go upwind, but the width of the board weigh up its shorter length and it can be compared to a 135×40 board if you just look at the area of the board. In other words, the upwind abilities are actually pretty good, especially in strong wind where you really can carve the board deep in the water and achieve a good amount of resistance.

Chop/Waves

The Foucan is designed to be used in flat and choppy water. The rocker of the board is slightly curved which comes handy once you hit choppy water. The Foucan also performs well in waves with fine comfort compared to some other boards. Ride in high speed and the board tends to spray some water in small waves. This is however not a major problem, just approach the waves in a sharper angle with more pressure on the back foot and you’ll more or less solve this little issue.

Jumping

To jump with the Foucan is a pleasure. The light weight (2.55kg for the 132×41 board) and short length of the board makes it easy to stay balanced in the air, so you can say goodbye to unwanted rotations in the air. The stiffness of the board also helps you to explode up from the water during the takeoff.

Stability & Grip

The width of the board improve the stability when you´re landing a trick or when you´re going downwind. The tips of the board are thinner than the center of the board which also makes them a bit more flexible which is nice when you land tricks and jumps since the tips act as shock absorbers. The “liquid super strong rails” are a bit rounded (this can be customized upon request), but sharp enough to deliver good grip during turns. The new dual concave rocker further increase the stability and board control.

Conclusion

“Foucan” is a board designed primarily for the intermediate to advanced freestyle rider. At the same time, the board characteristics such as the light weight, the small size and the flex make it an excellent board for old school tricks.  Ride the “Foucan” in medium to strong wind and flat water to fully take advantageous of its high performance characteristics. The price for the board with fins, pads and board handle included is €505.00. This equals approximately $630, about the same price level as the cheapest factory made boards on the market. Considering that “Foucan” is handmade with excellent board properties with a really nice finish make this board very affordable!

Click on this link for another small review about Navis Boards.

Looking for a custom made surf board?

Posted by kite2012 On August - 15 - 2012

If you wanna stand out from the crowd when it comes to your surf board, then you might wanna check out Loyd Surfboards. Originally, Loyd Surfboards was only a small surf shop in the Pismo Beach area, California. The year was 1974, and back then a man named Aaron Loyd made incredible boards that not only surfed the waves in perfection, but were designed to really catch ones eyes!

In 2004 Aarons son Gabriel, which at the time already mastered the skills needed to create and design amazing boards, partnered up and created “Loyd” surfboards, under their new logo. Gabriel litterally grew up in a surf board factory and hence possessed his fathers knowledge in how to create sick surf boards. Loyd is now producing some of the coolest and best custom boards in the world, both surfboards and kiteboards.

As far as I know Loyd isn’t producing any twintip boards that are common among many kitesurfers around the world, but I can recommend you to check out www.navisboards.com if you´re looking to buy a really nice and durable twintip board.

Here is a small video from Loyd Surfboards.

Navis Boards in Africa

Posted by kite2012 On June - 26 - 2012

Here is a little promo video from Navis Boards, filmed in El Gouna in Egypt and in Dakhla in Marocco. Moreover, the only video I found this morning that is worth watching. I have a Navis board myself and I like it a lot! If you ever get the chance to try one in flat water and light wind, you´ll understand why :)

Related External Links

Navis Boards – the best upwind board on the market?

Posted by kite2012 On June - 3 - 2012

Navis Boards is a new brand on the market that manufactures kite boards. Navis Boards differs from many other manufacturers in many ways. It´s not just the wooden look of the boards, but there unique characteristics and the possibility to customize the design and the shape of the board. All this to a price that can compete with most other kite boards on the market.

Navis Boards has a range of different boards in their portfolio. “Lewis” – the full carbon, high-performance kiteboard, “Hulk” – the light wind board and the “Bolt” – the all-round kiteboard. Navis Boards also sell longboards for skating.

I had the opportunity to test the 136×41 “Bolt” for about two weeks under various conditions, from choppy water and strong wind to flat water in light wind. These are my reflections.

At a glance

The board itself has a really nice design. The board has a core of  tri-axial glass fiber reinforced Paulownia wood which gives the board a smooth and exclusive wooden look, just like a sailing boat made from hardwood.

The color of the rail can be chosen from 6 different colors which is nice since you also have the possibility to add your logo or some other graphics to the board, hence it´s possible to choose a color that match your logo.

There are also three different colors on the fins to choose from.

The pads are soft and comfortable with straps that allow you to adjust them so much that they even fit my big 11 inch feet when wearing 7mm boots.

Performance

+ Flexibility – The Bolt is without doubt a very flexible board. I’m one of those maniacs that like to jump insanely high and it´s not always that my landings are perfectly smooth. So the flexibility comes in handy since it helps to absorb and soften hard landings.
+ Upwind – the upwind performances are simply amazing! I´m used to ride a 134×39 F-One SK8, not a bad board at all, but I need at least 1-2 m/s more wind to be able to even ride with the F-One compared to the Bolt. I had a session when I barely could stay up on the F-One board, riding upwind was more or less impossible. I swapped to the Bolt and was amazed over the huge difference. The Bolt has of course a little bigger area than my F-One, but it is also lighter, much lighter. The light weight in combination with the rocker make the Bolt outstanding in light wind! Ask anyone who have tried a bolt and they’ll for sure tell you about the ease to ride upwind even in light wind.
+ Choppy water – Here the rocker comes in handy again. The Bolt is forgiving and handles choppy water as good as any other twin tip board.

Pop – the pop is probably the only “weak” side with the Bolt. It´s not that the pop is bad. It´s fully possible to achieve good pop, but the flexibility of the board makes it slightly harder to pop comparing to stiffer boards. It´s all about compromises. A stiffer board delivers more pop than a more flexible board, but my opinion is that the other performances of the Bolt more than counterbalances the pop. However, if you really demand a board that deliver maximum pop, then you have the possibility to order a board that is a bit stiffer, by using another choice of reinforcement material. The board will not necessarily be thicker. The possibilities to customize your board from Navis Boards actually also includes the shape!

Construction

As already mentioned the board has a core made of tri-axial glass fiber reinforced Paulownia wood. The core is in turn layered with super strong plastic walls and UV- and impact resistant top sheet. This construction makes the Bolt extremely durable and it’s a board that can handle tough conditions, altough its low weight. Yet the flexibility is one of its kind. Navis Board offer a 2 year guarantee on their boards which is another proof of its indestructible construction.

 

Conclusion

The Bolt is a great all-round kiteboard. Perfect for beginners as well as more advanced riders. I can guarantee that you´ll be the one that still can ride upwind when all the other go back on land when the wind drops. The rocker and the flexibility provides a smooth ride, saving your knees and giving you extra soft landings. It´s easy to carve through the water and it delivers a pop that most riders probably are happy with. This is a board that I really can recommend to any rider out there!

Fore more information about Navis Boards, visit www.navisboards.com

 

Related External Links

Mike Blomvall

Posted by kite2012 On January - 3 - 2012

Mike Blomvall a.k.a. Mike The Knife is one of the best riders in Sweden. He is also a team tider for Nobile.

Mike wasn’t fully satisfied with Nobiles collection of board, so together they developed a new board called 50Fifty. The 50Fifty is a wakestyle-inspired, aggressive freestyle board designed for those who desire huge POP, super soft landings and tons of control. For 2012 this board is constructed with Pre-stress technology which means that the board provides “limitless” pop and is an excellent weapon for those who are into crazy tricks and wants to take their kite boarding progression to a new level.

For more info about Mike Blomvall check out his new website www.mikeblomvall.com

Here is Nobiles latest video featuring Mike in Turkey, enjoy!

 

 

 

 

 

 

Wainman Joke

Posted by kite2012 On December - 15 - 2011

Anyone who has been kitesurfing for some time, is probably familiar with the name Wainman. Lou Wainman was one of the pioneers of kite surfing and has promoted the development of complicated tricks. You will probably find some ambitious kiters, who in 2005 told us that Lou Wainman should not be modeled. The man was just a cool type, although usually somehow trapped in his own world. Quite common for well known companies today are that their founders are a bit crazy and “odd”, Lou Wainman is not an exception.Wainman recently sent me a package with the “Joke” board. First, it should be noted that included in the package was a board bag and a bag for the straps and pads were there even was a screwdriver for the assembly, as if the customer is clearly in focus and is so caring for him. After a quick installation of the soft-grip pads and straps then it was time for Joke to convince me on the water.

Striking is the high bending of the Joke. It quickly becomes clear that the Joke is designed also for fixed bindings and to manage lots of tension. Moreover, on the bottom of board are small channels that allow you to get along entirely without fins, thus Joke should be perfect an ideal toy for the slider and obstacles. Due to the high bending it takes a little more pressure on the board to specify and manage to point out the direction you´re going in. But once the joke is on the plane, that´s when he shows his potential. It has very high returning force, allowing the surfer to take height, especially during unhooked jumps. After landings in hooked jumps only a short adjustment period is needed to find the edge and quickly get the balance in the water. Super tight corners can be taken with the Joke and it is a true friend when it comes to carving. Riding toeside or blind is a pleasure, and the board is easy to rotate back on the surface.

Conclusion: The Joke is clearly aimed to the dedicated riders who want to be able to shoot themself up from the water with power when riding unhooked. For hooked jumps, it also offers good performance. The soft pads come to great use when landing, acting as shock absorbers that save your knees. The Joke is the perfect board for whoever who wants to be on the road even with boots and wants to rock out one or another obstacle. For beginners, the Joke is not recommended, the planing is not optimal and a bit more wind is required for riding upwind.

Related External Links

Airush 2012

Posted by kite2012 On December - 4 - 2011

It seems like 2012 can be Airush’s year! Airush has released many new products for year 2012 and they seem to be a success so far according to reviews and videos that are floating around on the web. So what’s new for 2012? Well, there is a lot, to much for me to cover everything in this post. However, Airush has products that are something extra, the smartbar III, Varial X and the Protoy board. Let´s take a look at them!

Smartbar III

The 2012 Smartbar is a highly tunable bar with some of the smartest features on the market today. A clean, yet very functional bar. Airush has integrated the Brain Quick Release with an extentable bar and other improved features, such as:

  1. Float Integration (to prevent the bar from sinking if you drop it into the water)
  2. EVA Grip
  3. 2012 Brain Quick Release
  4. Union Rivet
  5. OS Handles
  6. Extendable Length Bar
  7. Active Removable Stopper Ball
  8. Depower Strap
  9. E-Z 4-5 Line Conversion
  10. Multiple Length Options (3 meter extension lines comes with the bar)

Varial X

Mark Pattison, the designer of Varial X says that the goal with this kite was to take the depower, relaunching and forward speed from the previous Varial, and combine this with the unhooked performance, direct steering and highend of Vapor X. The result was the Varial X, a concept that is called SL-C i.e. a hybrid between a SLE kite and a C-kite. A kite for those who are looking for the unhooked, boosting and direct steering that comes with a C-kite, yet with a clean 4 line setup.

The Varial X sits further forward in the wind window than the Vapor X and it also flies faster through the wind window. When you sheet in the bar to the bottom the kite with surge forward to the edge of the wind window. This is something that gives you a great vertical height when jumping. The Varial X needs airspeed to develop power, so you can’t really park it and expect that the kite will act as a truck. The kite is constantly seeking its way forward to the edge of the wind window which might punish those who prefer to just park and ride, but in turn reward those with good flying techniques.

Protoy Board

Airush combines super slick design with the latest patented ACTIVE.

The Protoy board is as flexible as a PU (PolyUrethane) board, but made in high modulus carbon fibre, which gives the board much more reflex and at the same time makes it stronger.

The ACTIVE technology doesn’t prevent the board from flexing, but it prevent the board from breaking under extreme loads, for instance if you land hard after a jump.

Airush claims that this board is 20% lighter than a standard sandwich construction.

The image to the left shows an exploded view of the Protoy board.

  1. Diamond grooved EVA ultragrip traction
  2. Lightweight spray finished, sanded back.
  3. 40 GM protective layer
  4. 101 GM T700 Carbon biaxial lightweight carbon outer skin.
  5. High strength, optimum flexibility and lightening fast response.
  6. Heavy duty double glass reinforcement in heel area.
  7. Corecell san foam high density layer for strength and reduced weight over wood.
  8. 40 GM lightweight base layer for sandwich.
  9. Patented active stringer.
  10. High density foam reinfocement in fin areas.
  11. Corecell san foam high density layer for bottom deck.

The protoy board also comes with a surfinz adjustable box system and a carbon reinforced hexcore fin set.

I know, lot’s of techniqual stuff here… Perhaps just easier to watch this movie and form your own opinion :)

Tom’s kitchen episode 4

Posted by kite2012
May-14-2016 I Comments Off on Tom’s kitchen episode 4

We Love Kiteboarding

Posted by kite2012
Apr-22-2015 I Comments Off on We Love Kiteboarding

Te Tainui Kitesurfing Video by F-One

Posted by Emma Pat
Nov-19-2014 I Comments Off on Te Tainui Kitesurfing Video by F-One

Red Bull King of the Air 2015 – Rule the Sky

Posted by Emma Pat
Nov-17-2014 I Comments Off on Red Bull King of the Air 2015 – Rule the Sky

A new video from Kite 2013

Posted by kite2012
Mar-20-2013 I Comments Off on A new video from Kite 2013

What do to when it´s not too windy

Posted by kite2012
Oct-11-2012 I Comments Off on What do to when it´s not too windy

How to film yourself while kitesurfing

Posted by kite2012
Oct-6-2012 I Comments Off on How to film yourself while kitesurfing

Kiteloop Crash

Posted by kite2012
Sep-22-2012 I Comments Off on Kiteloop Crash

Cross the Atlantic ocean by a kite!

Posted by kite2012
Sep-21-2012 I Comments Off on Cross the Atlantic ocean by a kite!