Development tools like VS,ASP.Net


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) Development tools like VS,ASP.Net
# 8  
Old 10-25-2006
It looks like they're giving away an xBox 360 and the Gears of War game every week until 12/15. Pretty cool game.
Link removed.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Web Development

ASP.NET 5 Application on Centos OS7 Web Hosting Server

Hi All, Frankly I'm new to Linux Environment. While we are trying to Host an ASP.NET 5 Web Application on Centos OS7 Web hosting Server. There were couple of steps which we are supposed to go through, please see this link - We are stuck at Create a Container & then Running the Container,... (1 Reply)
Discussion started by: John Fredric
1 Replies

2. Web Development

Anyone know of a free license or library that converts asp.net word to pdf?

Hello, I am wondering if anyone knows of a free way (or very cheap way) for asp.net libraries to convert word to pdf. Thanks Kylle (4 Replies)
Discussion started by: kylle345
4 Replies

3. AIX

From ASP.NET to Oracle on unix

Dear all , I have a serious question and i need an answer before i go throught a new project. I have an oracle DB is on remote UNIX box.How can I connect through ASP.net on a windows server machine to the oracle db and do all the jobs i need (insert ,update delete) ? is their is a way ?? please... (2 Replies)
Discussion started by: hoshakhs
2 Replies

4. Windows & DOS: Issues & Discussions

ASP.net in unix based system. Someone Help Me

Hi Guys, i am new to the fourms.. i have one doubt related to unix.. i was developed one application in asp.net under windows platfrom. i want to run this application in sun one web server under unix environment.. Its possible or not .. please calrify my doubt. Thanks and Regards... (4 Replies)
Discussion started by: ksathiya76
4 Replies

5. UNIX for Dummies Questions & Answers

ASP.net in unix based system

Hi Guys, i am new to the fourms.. i have one doubt related to unix.. i was developed one application in asp.net under windows platfrom. i want to run this application in sun one web server under unix environment.. Its possible or not .. please calrify my doubt. Thanks and Regards... (1 Reply)
Discussion started by: ksathiya76
1 Replies
Login or Register to Ask a Question
Net::netent(3pm)					 Perl Programmers Reference Guide					  Net::netent(3pm)

NAME
Net::netent - by-name interface to Perl's built-in getnet*() functions SYNOPSIS
use Net::netent qw(:FIELDS); getnetbyname("loopback") or die "bad net"; printf "%s is %08X ", $n_name, $n_net; use Net::netent; $n = getnetbyname("loopback") or die "bad net"; { # there's gotta be a better way, eh? @bytes = unpack("C4", pack("N", $n->net)); shift @bytes while @bytes && $bytes[0] == 0; } printf "%s is %08X [%d.%d.%d.%d] ", $n->name, $n->net, @bytes; DESCRIPTION
This module's default exports override the core getnetbyname() and getnetbyaddr() functions, replacing them with versions that return "Net::netent" objects. This object has methods that return the similarly named structure field name from the C's netent structure from netdb.h; namely name, aliases, addrtype, and net. The aliases method returns an array reference, the rest scalars. You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still overrides your core functions.) Access these fields as variables named with a preceding "n_". Thus, "$net_obj->name()" corresponds to $n_name if you import the fields. Array references are available as regular array variables, so for example "@{ $net_obj->aliases() }" would be simply @n_aliases. The getnet() function is a simple front-end that forwards a numeric argument to getnetbyaddr(), and the rest to getnetbyname(). To access this functionality without the core overrides, pass the "use" an empty import list, and then access function functions with their full qualified names. On the other hand, the built-ins are still available via the "CORE::" pseudo-package. EXAMPLES
The getnet() functions do this in the Perl core: sv_setiv(sv, (I32)nent->n_net); The gethost() functions do this in the Perl core: sv_setpvn(sv, hent->h_addr, len); That means that the address comes back in binary for the host functions, and as a regular perl integer for the net ones. This seems a bug, but here's how to deal with it: use strict; use Socket; use Net::netent; @ARGV = ('loopback') unless @ARGV; my($n, $net); for $net ( @ARGV ) { unless ($n = getnetbyname($net)) { warn "$0: no such net: $net "; next; } printf " %s is %s%s ", $net, lc($n->name) eq lc($net) ? "" : "*really* ", $n->name; print " aliases are ", join(", ", @{$n->aliases}), " " if @{$n->aliases}; # this is stupid; first, why is this not in binary? # second, why am i going through these convolutions # to make it looks right { my @a = unpack("C4", pack("N", $n->net)); shift @a while @a && $a[0] == 0; printf " addr is %s [%d.%d.%d.%d] ", $n->net, @a; } if ($n = getnetbyaddr($n->net)) { if (lc($n->name) ne lc($net)) { printf " That addr reverses to net %s! ", $n->name; $net = $n->name; redo; } } } NOTE
While this class is currently implemented using the Class::Struct module to build a struct-like class, you shouldn't rely upon this. AUTHOR
Tom Christiansen perl v5.18.2 2013-11-04 Net::netent(3pm)