Get local machine Internet IP address

Hi all,
I want to get the internet IP address (from ISP) of my computer. But my computer already has a internal IP address. How can I get the Internet IP instead of Internal IP?
I tried :
InetAddress mNet = InetAddress.getLocalHost();
String t = mNet.getHostAddress();
But the IP is Internal once.
Here is the infomration when I run ipconfig :
0 Ethernet adapter :
IP Address. . . . . . . . . : xxx.xxx.xxx.xxx
Subnet Mask . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . : xxx.xxx.xxx.xxx
1 Ethernet adapter :
IP Address. . . . . . . . . : 0.0.0.0
Subnet Mask . . . . . . . . : 0.0.0.0
Default Gateway . . . . . . :
2 Ethernet adapter :
IP Address. . . . . . . . . : xxx.xxx.xxx.xxx
Subnet Mask . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . :
Remark : 0 Ethernet adapter is Internet IP, 2 Ethernet adapter is Internal IP
Thanks!

Hi,
This code should print all the IP addresses from the local machine:
import java.net.*;
public class TestIP {
     public static void main(String args[]) {
          try {
               InetAddress[] addresses;
               addresses = InetAddress.getAllByName(InetAddress.getLocalHost().getHostName());
               for (int i=0; i<addresses.length; i++) {
                    System.out.println(addresses.getHostAddress());
          catch(UnknownHostException e) {
               System.out.println (e.getMessage());
Hope this helps,
Kurt.

Similar Messages

  • JSP getting local machine time?

    I need to create a program which the users are located in two time zone. I will hence need to use the local machine time from their PC to check against certain record in my database. I understand JSP is processed at the server end. Is JSP capable of requesting the local machine time when a user hit the page?
    otherwise, is there a way to use javascript to parse the local machine time into JSP?
    Thank you.

    create a javascript function to get the local time:
    function getLocalTime() {
    var dDay = new Date();
    var nHours = dDay.getHours();
    var nMinutes = dDay.getMinutes();
    var localTime = nHours + ":" + nMinutes;
    document.localTime.value=localTime;
    in your jsp include a hidden field to accept the local time:
    <input type=hidden name=localTime value="">
    call the getLocalTime() function onload, in this way you can get the local time of the client machine when the page is loaded, store it in a hidden field and then retrieve it in the next jsp using request.getParameter("localTime") method.

  • Access local machine internet from Hyper-V Machine

    Dear All,
    I have configured a VM as a domain controller and want to access my host machine internet. below is an image of the VM Settings
    Mohd Sufian www.sqlship.wordpress.com Please mark the post as Answered if it helped.

    Hello Mohammad,
    As I can see from your screenshot above that you have 2 vNICs attached to this Virtual Machine.
    The logical Name is set to Internal Switch. Could you please confirm what type of Virtual Switch did you choose when you create the vSwitch?
    External, Internal or Private?
    If the Virtual Switch is Created as Internal, then it's impossible to access the Internet, the network traffic won't leave the Hyper-V Host. Please make sure that you have at least one Virtual Switch created as
    External and attached to this VM.  
    Now based on your existing Network Infrastructure (VLAN, Firewall, etc...) you must adjust if needed.
    Hope this help.
    Regards,
    Charbel Nemnom
    MCSA, MCSE, MCS, MCITP
    Blog: www.charbelnemnom.com
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark
    as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Digging out the local machine's IP address

    Does anyone know of someway to
    determine the IP address of the local
    computer through a locally running java app?
    (in case you are wondering, it is data necessary
    to do a DB lookup to retrieve a printer config. for a specific
    client workstation)
    thanks,
    ...Ben

    I have tried this and get this exception:
    C:\My Documents\Code\testProperties.java:13: unreported exception java.net.UnknownHostException; must be caught or declared to be thrown
              String ipAddr = InetAddress.getLocalHost().getHostAddress();
    Am severely confused...
    Any help would be appreciated
    Regards
    Paul

  • How to configure ipsec policy on windows server 2008 r2 to permit local machine only access to gateway,one other server and it's local ip?

    I have applied IPsec policy on local machine(ip address:10.82.138.76) with windows server 2008 ent r2 installed,only permit local machine to comunicate with itself,one other server(ip address:10.82.138.77) and the gateway device(ip address:10.82.138.1).After
    i asigned this policy,i can ping the gateway (ip address:10.82.138.1),and the other server(ip address:10.82.138.77),but i can't ping local machine itself(ip address:10.82.138.76),could anybody tell me why and how to solve this problem?When i applied the same
    policy to windows server 2003 ent,i can ping the local machine ip address.

    Hi,
    Thanks for your post.
    First, try to ping the loopback address 127.0.0.1. If the loopback test succeeds but you cannot ping the local IP address, please post the unedited
    ipconfig /all and route print of the problematic computer.
    For test purpose, you may refer to the following lab step by step guide to deployment Tunnel Mode IPsec. Hope it helps.
    Windows Firewall and IPsec Policy Deployment Step-by-Step Guide
    http://technet.microsoft.com/en-us/library/cc732400(v=ws.10)
    Connection Security and IPsec
    http://technet.microsoft.com/en-us/library/cc771593(v=ws.10).aspx
    Connection Security Rule Wizard: Tunnel Endpoints Page - Client-to-Gateway
    http://technet.microsoft.com/en-us/library/dd759083
    Best Regards,
    Aiden
    Aiden Cao
    TechNet Community Support

  • Extremely slow file transfers to Hyper-V VM on local machine

    I am attempting to transfer a 1.3GB file from my local machine (Windows 8) to my local hyper-V instance (Windows 2012). The transfer begins at about 300kb/s and then swiftly drops to 12-20kb/s.
    The two machines are connected to the LAN via the same physical ethernet adapter. The vSwitch and my local connection are bridged, so the VM and my local machine have IP addresses on the same subnet.
    Could that be related to the issue? I not a network administrator by trade so I am unaware of the tricks to diagnose this issue.

    Most likely, you are seeing an issue with Virtual Machine Queues.
    If you are running a Broadcom network adapter, you will need to disable Virtual Machine Queues. We just setup a new server, running Server 2012 Standard with Hyper-V, running two Server 2012 Standard guests, and saw the exact same thing you are describing.
    This seems to be an issue affecting Broadcom adapters.
    Go into the Hyper-V host network properties, and look at the physical adapter, not the vEthernet. On the Advanced tab, scroll down to Virtual Machine Queues, and set it to disabled.
    Once we made this change, things were flying.

  • Getting the IP address of the local machine.

    Hello All,
    We are deploying an application using 10g AS(LINUX).We have to capture the IP address of the
    user machine, in which the browser is running.(10g forms,9i db)
    WEB_UTIL is not configured and we are using java importer for the purpose.
    I am a 'very' newbie in java.I searched a lot in the net and got some solutions but all providing the Ip address of the AS machine.
    Can anyone give a java program to get the IP address of the local machine?Or a link...
    Thanks in advance
    Jeneesh

    Give a glance to these documents. may be coukd help you
    http://forum.java.sun.com/thread.jspa?threadID=245711
    Java 6.0 includes an API to get the MAC address of any attached network interface:
    http://java.sun.com/javase/6/docs/api/java/net/NetworkInterface.html#getHardwareAddress
    (idea for IP user: you can shell out, and use the 'who -m'?)
    Regards Jeneesh

  • I lost the lan ethernet connection of an older windows 7 pc to my 3 Terabyte router when adding a new local printer to the pc. How do i set this up again so the PC is recognized and can get to the internet again through the time capsule?

    I recently added a new printer to a 2005 vintage PC that is running windows 7. It used to go through a router in my wifes upstairs office to the time capsule by wired ethernet (cat5) but when I added her new local printer thought I would network it, big mistaked, lost all my ethernet connection and she cannot get to the internet. Wireless not an option. How do i set up again the ethernet connection and i will only USB the printer locally this time for the windows pc?
    Tried windows diagnostics, and besides telling me to reset everything and turn router off and on etc. I am in an endless loop.
    Other Mac products are not impacted by this issue.

    I see no direct connection.. a printer and the computer setup for internet are not related.
    But it sounds like the router in the wife's office is now in the wrong mode..
    If you have an existing main router replace the second router for a switch .. that is the easy way.
    Otherwise you need to bridge the router if it has that option.. most do not. Or use wan bypass.. where you turn off the dhcp server in the router and fix its ip to match the range of the main router.. this is the hassle of using router as a switch.
    BUT I am making a huge number of assumptions.
    What I need is the full network layout.. a quick picture would help.
    I need main modem.. main router.. (maybe same box or different).. make model and current IP address and how dhcp is setup.
    I need secondary router.. if that is what it is, IP and settings.
    I want the printer type and model. How it is connected.
    BTW I much prefer to see a network printer plugged into the network rather than usb.. it is only a matter of sorting the IP settings and driver pointing to the network rather than local.
    Or you should think of it as a broken washing machine and call the technician.. who could fix the whole lot in an hour.

  • Local machines showing up with external addresses??

    I've got one of those problems that suddenly makes me realize how little I understand about the gory details of OS X networking. Any help about the following would be greatly appreciated.
    I'm running a "relatively standard" home network environment. That is, I've got a DSL connection to my ISP, and am running a router/NAT environment that connects a number of machines -- Mac, Windows, and Linux -- to the external network. Internally, all the machines have addresses in the range of 192.168.0.x. However, because of the static/NAT address mapping, the machines whose internal addresses are mapped to external static addresses show up at external hosts as 216.xxx.yyy.zzz (the address range assigned to me by my ISP). The other machines, which are on the network via NAT, show up as 66.xxx.yyy.zzz, the address assigned by my ISP. Finally, I'm running a local DNS server that handles addressing issues for my domains and sub-domains that are hosted on local machines. All the machines use this local server for their DNS, with my ISP's DNS server as secondary. All of this is to say that it's more or less a pretty typical configuration, and, in general, everything is working fine.
    Here's where it gets tricky:
    * Machine A is a Fedora 10 linux box, which hosts an externally visible domain and runs, among other things, a web server. It's assigned to one of the addresses that's mapped to a static IP address.
    * Machine B is a MacBook Pro, running Snow Leopard (10.6). It typically runs at 192.168.0.6, which is NOT one of the addresses mapped to a static address, but "just" a NAT address.
    Now, suppose Machine B hits the web browser run by Machine A: the log files should show the traffic arriving from the local address, 192.168.0.6. However, it instead shows up as coming from 66.xxx.yyy.zzz, the external NAT-affiliated address. This seems wrong, especially since all the other machines on my network show 192.168-type addresses when hitting the web server.
    I now change Machine B's address to 192.168.0.5 -- one of the statically-mapped addresses. Browsing traffic at Machine A is now arriving from 192.168.0.5, which is (I think) as it should be.
    I now change Machine B's address back to 192.168.0.6. The web traffic on Machine B is now reported to be arriving from 192.168.0.6 -- NOT 66.xxx.yyy.zzz.
    Thus my confusion. It's complicated by the fact that I don't know where to look for the problem. All the log files on all the machines seem relatively normal; there are least no glaring problems screaming out from them. I'm tempted to blame the MacBook, since it's the only one showing the problem, but I'd feel better if I knew what to do and how to fix it.
    Any advice out there? This is driving me kinda nuts. Thanks!

    Let me first say I think your network is far from 'relatively standard'. :-D
    Yeah, you're probably right...
    Given that you have two public subnets - 216.xxx.yyy.zzz and 66.xxx.yyy.zzz - do you have two routers? or does one router handle them both?
    Just one router. It handles the NAT translations for the machines not on static addresses and the mappings of the statically-addressed machines to the 216 address space. I confess that one of the things I don't understand is how the NAT machines end up on the 66.xxx.yyy.zzz address (externally, the traffic from all these machines appears to be coming from that one address). It's all just part of that internet magic, I guess.
    In addition, what else do you change when you change the Mac's IP address? Do you change its router address? it's DNS Server address?
    I have two Location profiles set up for the MacBook -- one for 192.168.0.6, and one for 192.168.0.5. I changed the address simply by flipping back and forth between them.
    Which machine in your network is handling DNS?
    Machine C -- a Mac Pro running Snow and BIND. It's been working quite nicely for quite awhile; it pre-dates by quite awhile the problem with the MacBook.
    Re Dave's question above this one: Yes, everything is working; the only practical issue is that I have some ssh restrictions set up that control the ability to log in as different users from different hosts, and the fluctuating IP addresses can mess this up. But, other than that, although I worry that these messages are indicating that something else is wrong somewhere, things generally seem to be working okay. Should I just go forth and be happy?

  • Get Data from API which is hosted on local Machine

    I am using VS2013 to develop a databound app in win phone 8. I hosted a api on IIS Express on local machine with IP. When i browse the API on browser is comes easily,But a error is coming when trying to access from VS Solution.I am attaching my code and
    the error. the code is following
                         const string apiUrl = @"http://169.254.80.80/api/guest";
            public MainViewModel()
                this.Items = new ObservableCollection<ItemViewModel>();
            /// <summary>
            /// A collection for ItemViewModel objects.
            /// </summary>
            public ObservableCollection<ItemViewModel> Items { get; private set; }
            private string _sampleProperty = "Sample Runtime Property Value";
            /// <summary>
            /// Sample ViewModel property; this property is used in the view to display its value using a Binding
            /// </summary>
            /// <returns></returns>
            public string SampleProperty
                get
                    return _sampleProperty;
                set
                    if (value != _sampleProperty)
                        _sampleProperty = value;
                        NotifyPropertyChanged("SampleProperty");
            /// <summary>
            /// Sample property that returns a localized string
            /// </summary>
            public string LocalizedSampleProperty
                get
                    return AppResources.SampleProperty;
            public bool IsDataLoaded
                get;
                private set;
            /// <summary>
            /// Creates and adds a few ItemViewModel objects into the Items collection.
            /// </summary>
            public void LoadData()
                if (this.IsDataLoaded == false)
                    this.Items.Clear();
                    this.Items.Add(new ItemViewModel() { ID = "0", LineOne = "Please Wait...", LineTwo = "Please wait while the catalog is downloaded from the server.", LineThree = null });
                    WebClient webClient = new WebClient();
                    webClient.Headers["Accept"] = "application/json";
                    webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient_DownloadCatalogCompleted);
                    webClient.DownloadStringAsync(new Uri(apiUrl));
            private void webClient_DownloadCatalogCompleted(object sender, DownloadStringCompletedEventArgs e)
                try
                    this.Items.Clear();
                    if (e.Result != null)
                        var books = JsonConvert.DeserializeObject<GuestDetail[]>(e.Result);
                        int id = 0;
                        foreach (GuestDetail book in books)
                            this.Items.Add(new ItemViewModel()
                                ID = (id++).ToString(),
                                LineOne = book.GuestName,
                                LineTwo = book.Nationality,
                                LineThree = book.Profession.Replace("\n", " ")
                        this.IsDataLoaded = true;
                catch (Exception ex)
                    this.Items.Add(new ItemViewModel()
                        ID = "0",
                        LineOne = "An Error Occurred",
                        LineTwo = String.Format("The following exception occured: {0}", ex.Message),
                        LineThree = String.Format("Additional inner exception information: {0}", ex.InnerException.Message)
            public event PropertyChangedEventHandler PropertyChanged;
            private void NotifyPropertyChanged(String propertyName)
                PropertyChangedEventHandler handler = PropertyChanged;
                if (null != handler)
                    handler(this, new PropertyChangedEventArgs(propertyName));
    the error is ...
    {System.Net.WebException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound.
       at System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
       at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClasse.<EndGetResponse>b__d(Object sendState)
       at System.Net.Browser.AsyncHelper.<>c__DisplayClass1.<BeginOnUI>b__0(Object sendState)
       --- End of inner exception stack trace ---
       at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
       at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
       at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)
       at System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult result)}
    Can anyone help me please, I am stuck with it.
     

    Did you set up your router to forward the request to your computer?  the ip you posted looks an ip your internet service provider gave you.
    Fyi you can get 10 free azure websites

  • How do you get values of local machine running applet on remote server?

    Hi,
    I have an applet that runs great running the html file on my local machine from a root directory. I've placed my code(java, class, and html files) on the web server and loaded the applet onto a page. The results are merely:
    "Computer Name: localhost"
    "IP Address : 127.0.0.1"
    Instead of:
    "Computer Name: ACTUALNAME"
    "IP Address : 189.40.20.211"
    etc...
    The code is as follows:
    import java.applet.*;
    import java.awt.*;
    import java.net.InetAddress;
    public class IPFinder extends Applet {
    public void paint(Graphics g) {
    super.paint(g);
    try {
    InetAddress localaddr = InetAddress.getLocalHost () ;
    g.drawString("Computer Name: " + localaddr.getHostName (), 2, 13);
    g.drawString("IP Address : "+localaddr.getHostAddress (), 3, 25);
    g.drawString("", 3, 45);
    String str = localaddr.getHostName();
    InetAddress[] localaddrs = InetAddress.getAllByName ( str ) ;
    for ( int i=0 ; i<localaddrs.length ; i++ )
    if ( ! localaddrs[ i ].equals( localaddr ) )
    // g.drawString("Local hostname : " + localaddrs[ i].getHostName () , 3, (i+0)+50);
    g.drawString("Local IP Address("+i+"): " + localaddrs[ i].getHostAddress () , 3, (12*i)+((i+10)+45));
         }} } catch (Exception e) {
    g.drawString("Can't detect localhost : " + e +". Check Network settings.", 3, 60);
    public static void main(String[] args) { new IPFinder(); }
    I'm trying to get Real IP Addresses (as the code was setup to do) from a browser running on the web server. I have read some of the threads in this forum and some mention to use NetworkInterface while others recommended using Sockets (not an option since we do not use them), and another to use a signature as a workaround. Anyone know the best direction to get the results expected?
    Thanks in advance,
    Geoff-

    I have an applet that runs great running the html file
    on my local machine from a root directory. I've
    placed my code(java, class, and html files) on the web
    server and loaded the applet onto a page. The results
    are merely:
    "Computer Name: localhost"
    "IP Address : 127.0.0.1"This indicates that your applet when run over a web
    server has not the rights to query the local name and
    address. Look [url
    http://java.sun.com/j2se/1.4.2/docs/api/java/net/InetAd
    ress.html#getLocalHost()]here. The so-called
    loopback address is 127.0.0.1
    Check your documentation for "signed jar" (or search
    the forum or the sun website) if you want to give your
    applet more rights, but I don't think that this is
    worth the effort in this case.
    gdsimz, since you already started two new threads based on my suggestion, how about at least saying "thank you" or "sorry, didn't help"?

  • Preview Error: "no endpoint listening at net.pipe ... incorrect address or SOAP action ... could not be found on your local machine"

    Hi
    I am developing SSRS reports, suddenly now I am getting this error when I try to preview a report in the VS 2010 shell:
    "This is a designer preview error, "There was no endpoint listening at  net.pipe://localhost/PreviewProcessngServcie11108/ReportProcessng that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerExcelption,
    if present, for more details. The pipe endpoint 'net.pipe://localhost/PreviewProcessing11108/ReportProcessing' could not be found on your local machine"
    The error has come out of the blue, reports which I used to be able to preview, I can't preview anymore.
    Anybody knows what to do to make it work again?

    I tried to apply Mike Yin' answer on this thread
    http://social.msdn.microsoft.com/Forums/en-US/38ff8d54-06aa-40c3-8916-378d5185320e/report-designer-preview-in-ssdt-throws-up-a-end-point-not-found-error?forum=sqlreportingservices
    Suggestion 1:
    Press WinKey+R , input “services.msc” in the Run box, and press enter.
    In the local services list, find the “Net.Pipe Listener Adapter”. 
    If it is stopped, start it. If it is started, restart it.
    I found that “Net.Pipe Listener Adapter” was not enabled, so I enabled it and started/restarted it. Now it works again :)

  • Getting Datapump Export Dump file to the local machine

    I apologize to everyone as this is a duplicate post.
    Re: Getting Datapump Export Dump file to the local machine
    My initial thread(started yesterday)was in 'Database General' and didn't get much response today. Where do i post questions on EXPORT/IMPORT utilities?
    Anyway, here is my problem:
    I want to take the export dump of itemrep schema in orcl database (in a remote machine). I have an Oracle server (10G Rel2) running in my local Windows machine. I have created a user john with necessary EXPORT/IMPORT privileges in my local db. Then i created a Directory object,ie a folder named datapump in my local hard drive and granted READ WRITE privileges to john.
    So john, who is a user in my local machine's oracle db is going to run the expdp utility.
    expdp john/jhendrix@my_local_db_alias SCHEMAS=itemrep directory=datapump logfile=itemrepexp.log
    The above command will fail because it will look for itemrep schema inside my local db, not the remote db where the itemprep is actually located. And you can't qualify the schemaname with its db in the SCHEMAS parameter (like SCHEMAS=itemrep@orcl).
    Can anyone provide me a solution for this?

    I think you can initiate the datapump exp utility from your client machine to export a schema in a remote database.But, Upon execution,oracle looks for the directory in the remote database and not on your local machine.
    You're inovoking expdp from a client (local DB) to export data from a remote DB.
    So, With this method, you can create the dumpfiles only on the Remote server and not on the local Machine.
    You can perform a direct import instead of export using the NETWORK_LINK option.
    Create a DBlink from your local and Remote DB and verify the connection.
    Then,Initiate the Impdp from Your local machine DB using the parameter network_link=<db_link of the Remote DB> to import the schema.
    The advantage of this option eliminates the Dumpfile creation at the Server side.
    There are no dumpfiles during the import process. the Data is imported directly to the target schema.

  • How can i get local MAC address?

    How can i get local MAC address or desk ID?
    thanks a lot;

    How can i get local MAC addressUse the command line command ipconfig or ipconf (depending on o.s.)
    or desk ID?Look at the desk and see if it has a number on it.
    (Untested as my desk doesn't have an id)
    thanks a lot;Your welcome.

  • Device in the data base getting PXE aborted --unable to find machine using Mac address /resouce iD

    hi
    when I deploy osd to my unknown collection iam getting PXE aborted  ..earlier we used to delete machines from sccm
    by searching query based on Mac address .and clear last pxe advertisement option , but iam finding certain machines getting PXE aborted  shows device in data base when we search these machines using mac address /resouce iD unable to find in sccm or
    sccm data base . I have found some blogs where unknown collection parameters are changed to decommissioned value from "o" to "1"
    but unable to build new unknown collection , its very difficult to delete machines from SCCM console every time when pxe aborted . machines are getting pxe aborted some way its known to SCCM ,its difficult to import machines every time before machines are
    image .is there any permanent solution to override pxe aborted ,even systems are known to SCCM ,we are in sccm 2012 infrastructure
    hoping a positive replay from all technical leads
    thanks in advance
    ankith

    Hi,
    "is there any permanent solution to override pxe aborted ,even systems are known to SCCM ,we are in sccm 2012 infrastructure"
    I think there is not a permanent solution.  
    It could help if you first run the configuration manager report to locate a particular MAC address.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • Burning a backup dvd at a given time ?

    I'm a newbie with Automator and AppleScript. Here's what I'd like to be able to do: - I have a Burn Folder loaded with files; - I want to start the burning at a given time I can choose. Do I have to use Automator, or an AppleScript ? Where do I start

  • New feature Pan Only Error

    Hi, people When I try use the new feature in Pan Only I recieve this mesage. In image attached Any one has a tip? Thanks

  • Playlist Song Position in Memory ipod 7th generation

    I recently purchased a 7th generation ipod upgrading from a 4th generation which I had for several years.  With my 4th generation ipod I would frequently listen to a playlist at work in shuffle mode that would have over a 1,000 songs.  This could tak

  • Invert pictures in Aperture 2 (mirror function)

    Hello, apple has not implement the funktion to invert photographs with Aperture (mirror function). Because of my work, I often have to take photographs over a intraoral mirror. When importing these photographs on my iMac using Aperture they are all i

  • Getting Python 2.6 installed

    Hi all, I'm in the process of installing Arch Linux to move away from Gentoo.  A number of programs I am using require Python 2.6 (they haven't yet been upgraded to 2.7/3.x) so I'm trying to work out how to install Python 2.6.  Under Gentoo there are