Wednesday, July 18, 2007

Shoes site

There is a new shoes site at http://fhunth.joolo.com/shoes/

It is a shoes store with shoes for women and men.

You can find dance shoes for flamenco, jazz, tango, etc on all sizes, colours and models.

Shoes are hand made on genuine leathers like carpincho.

Visit the boots section for men.

Saturday, March 24, 2007

Maya 3d scuplting personal project

// Recorta y graba capa
select -r nurbsPlane1 ;select -tgl nurbsSphere1 ;string $Selection1[];$Selection1[0] = "nurbsPlaneShape1";
string $Selection2[];$Selection2[0] = "nurbsPlaneShape1";
$Selection2[1] = "nurbsSphereShape1";
performBoolean 0 2 $Selection1 `currentCtx`;nurbsBoolean -ch 1 -nsf 1 -op 2 nurbsPlane1 nurbsSphere1 ;

nurbsBoolean -ch 1 -nsf 1 -op 2 nurbsPlane1 nurbsSphere1 ;select -tgl nurbsSphere1 ;select -cl ;select -r nurbsBooleanSurface1_1 ;
//Aca grabar


// Esto de aca abajo mueve el plano para abajo y deja listo para hacer export selection// En una prueba se necesito hacer unas 150 veces
select -r nurbsPlane1 ;move -r 0 -0.10 0 ;select -r nurbsBooleanSurface1_1 ;

3d print printing fhunth

Labels:

Monday, July 17, 2006

Packaging and Deploying Sharepoint Web Parts

SharePoint Products and Technologies Tool: WPPackager for Packaging and Deploying Web Parts

http://www.microsoft.com/downloads/details.aspx?FamilyID=0fda5912-c136-4b44-911a-011adfcc66e3&DisplayLang=en

Generates an installer for Sharepoint Web Parts

Wednesday, February 22, 2006

FileMon

This is a tool that helped me a lot in many situations. Filemon.



Filemon v7.02
This monitoring tool lets you see all file system activity in real-time.

FileMon monitors and displays file system activity on a system in real-time. Its advanced capabilities make it a powerful tool for exploring the way Windows works, seeing how applications use the files and DLLs, or tracking down problems in system or application file configurations. Filemon's timestamping feature will show you precisely when every open, read, write or delete, happens, and its status column tells you the outcome. FileMon is so easy to use that you'll be an expert within minutes. It begins monitoring when you start it, and its output window can be saved to a file for off-line viewing. It has full search capability, and if you find that you're getting information overload, simply set up one or more filters.

FileMon works on NT 4.0, Windows 2000, Windows XP, Windows XP and Windows Server 2003 64-bit Edition, Windows 2003 Server, Windows 95, Windows 98 and Windows ME.



You can reach this and another tools at http://www.sysinternals.com/

Tuesday, December 13, 2005

Check Your Internet Connection With C#

This is a post i found when i was searching some c# code so as to chech the status of my dialup connection.

I have not tested it yet, but i ll do it.


Check Your Internet Connection With C#
By Simohamed Attahri

How to check if your computer is connected to the internet with C#. It's much more easier that other tutorials I've seen in other sites. In deed, we're going to use a simple API function InternetGetConnectedState, to return a boolean variable.

This function takes two arguments :

The first one is an integer used with out keyword, that means that after calling the function, the variable will contain an interger that describes the connection state ( use of a modem, use of a proxy, offline mode...). Note that you must refer to www.msdn.com for more information about that.
The second one is a reserved variable that must be set to 0.

In this tutorial, we'll create a class with a static function that returns true if connected and false if not, using our API function in private state.

Check this out :

using System ;
using
System.Runtime ;
using System.Runtime.InteropServices ;

public class InternetCS
{

//Creating the extern function...
[DllImport("wininet.dll")]
private extern static bool InternetGetConnectedState( int out Description, int ReservedValue ) ;

//Creating a function that uses the API function...
public static bool IsConnectedToInternet( )
{

int Desc ;
return InternetGetConnectedState( out Desc, 0 ) ;

}

}

Simohamed Attahri,
attahri_simohamed@hotmail.com for help.