What are supported languages

I was wondering what languages I can use on an apple server.
Some of the ones I would require for my site would be:
     -PHP (need at least 5.5, but would prefer 5.6)
     -SQL(via MySQL)
     -Java
     -Perl
Some languages which I would like to use:
     -Python
     -C/C++
     -ASP &/or ASP.NET (I really want one of these)
     -Erlang (would be cool, to play with)
This is what it would take for me to switch from Linux (I need to know this before I buy).

You will probably feel most at home by installing MacPorts:
     https://www.macports.org/
, which is a package manager that will enable to install pretty much every piece of open source software (apps, tools, libraries) that you'll find on Linux.
C.

Similar Messages

  • What are supported device attributes on iOS during enrollment phase?

    I'm installing configuration profile using over-the-air (OTA) enrollment. What are supported device attributes on iOS during first phase payload? I'm sending sth like:
    <plist version="1.0">
        <dict>
            <key>PayloadContent</key>
            <dict>
                <key>Challenge</key>
                <string>challenge</string>
                <key>DeviceAttributes</key>
                <array>
                    <string>UDID</string>
                    <string>DEVICE_NAME</string>
                    <string>VERSION</string>
                    <string>PRODUCT</string>
                    <string>MAC_ADDRESS_EN0</string>
                    <string>IMEI</string>
                    <string>ICCID</string>
                </array>
                <key>URL</key>
                <string>https://my-profile-server</string>
            </dict>
            <key>PayloadDescription</key>
            <string>Enter device into the encrypted profile service</string>
            <key>PayloadDisplayName</key>
            <string>Profile Service</string>
            <key>PayloadIdentifier</key>
            <string>com.xxx.mobileconfig.profile-service</string>
            <key>PayloadOrganization</key>
            <string>XXX</string>
            <key>PayloadType</key>
            <string>Profile Service</string>
            <key>PayloadUUID</key>
            <string>1a21d4dd-6723-45c5-a184-c3fe0075db14</string>
            <key>PayloadVersion</key>
            <integer>1</integer>
        </dict>
    </plist>
    Is there any more attribute that I can get from the device in this payload? For example serial number? Is there any official list of possible attributes? Any help would be much appreciated. Thanks.

    May be here:  http://www.apple.com/support/ios/keynote/

  • What are supported sampling frequency and digitization rates for Zen Micropho

    Some MP3's are playing back slowly. It is inconsistent, though, since files with the same digitization rate and sampling frequency will behave differently - some right speed, some slow.
    The bulletin board says:
    "My tracks don't play at the correct speed e.g. they play too slowly, why?
    Chances are they are encoded in an unsupported sampling frequency..."
    How do I find out what the supported sampling fequencies and digitization rates are?

    Thanks for the info. I guess I was looking for something more specific - the exact bitrates and sample rates that Creative claims to support. Would you know where official and comprehensi've data can be had? There must be a tech spec somewhere.
    It is common these days in business to see a recording of, say, a conference call or seminar presentation at 32k bitrate/025Hz, or even 24k bitrate/8000Hz, posted to a company's website for download by those who could not be there, and MP3 players are increasingly used for their replay. Companies use low digitization rates because there is no need for hifi and the files are much smaller: less storage, faster download.
    I'd be surprized to think that Creative don't have compatibility with the standard range of rates offered by ubiquitous programs like Audacity and dBpower, the latter being one they themselves recommend!

  • What are supported video types

    What are the supported video types for itunes u course manager

    See:
    http://sharepoint.nauplius.net/2013/01/supported-file-formats-in-the-sharepoint-2013-media-web-part/
    Trevor Seward, MCC
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • What are supported codecs for Whisper feature?

    Dear Experts,
    I'm looking for Cisco document/white paper/URL that shows the supported codec for Whisper feature.
    On the “Agent Greeting and Whisper Announcement Feature Guide for Cisco Unified Contact Center Enterprise - Release 8.5(x) - July 2011” at page 11 “Protocol Requirement” section, it only mentions codec G.729 can be used in Agent Greeting deployment. It doesn't mention any list of supported codec for the Whisper feature.
    Would somebody be able to share the pointer?
    Thank you.
    .nurmawan

    Actually, MPEG-4 is a family of codecs, which includes H.264. But your other post ( http://discussions.apple.com/thread.jspa?threadID=1923894&tstart=0 ) suggests that you want to edit in MPEG-4. If so, what codec is the source video?
    -DH

  • What are the major differences b/w live copy blueprint and Language copy of CQ ?

    We are in process of creating a different Language Versions of a Website and trying to figure out the best/recommended approach.
    what are the major differences b/w live copy blueprint and Language copy of CQ ? which one is recommended in which ? any pointers on this would be appreciated.

    The language copy tool is a one-shot tool to create pages under a certain structure. It has a nice UI for it. But that's it.
    The MSM blueprint/livecopy concept is much more powerfull, because it has live connections between the blueprint and the livecopy. It does not only allow you to easily create livecopies, but supports you also in maintaining the relationshop between these. So you can easily detect, that the blueprint page has been updated and needs to be rolled out again. Or that there are conflicts, because both blueprint and livecopy have been updated independently. And so on.
    From my perspective the language copy tool should not be used, because with creation of language pages the "fun" has just started and the real work is just ahead.
    Jörg

  • What values of HTML script's type attribute are supported?

    RE: <script type="...some type..." src=".... somewhere ...."></script>
    (SCRIPT is uppercase in HTML 4, lowercase in XHTML)
    Specifications say about type attribute:
    "This attribute specifies the scripting language of the element’s contents and overrides the default scripting language".
    JavaScript (aka ECMAScript) is supported and most widely used; in fact I run both inline and .js scripts.
    Where can I find, without looking at Firefox source programs, what values are supported?
    Just think of a script written in C language, or in Linux shell, or whatever else.
    If i write <script type="abcd"> then this weird value is simply ignored.
    Thanks, regards

    Hi Massimo,
    In addition to specifying ''text/javacript'', ''text/ecmascript'', ''application/javascript'' and ''application/ecmascript'', you can also specify a specific version of the javascript spec, ie ''application/javascript;version=1.8''.
    There is no direct support for languages other than java/ecmascript, however it is possible to write javascript-based compilers for other languages like ''C''. This article has an example:
    https://developer.mozilla.org/en-US/Add-ons/Code_snippets/Rosetta
    It's probably worth stating that this work is highly experimental. If you're looking to write a web app that people will actually use, it's far, far better to use javascript in the browser and execute any other programming on the server side.
    https://en.wikipedia.org/wiki/Server-side_scripting
    There are also widely used tools like jquery which, while not allowing you to use a different language, do introduce new commands which make javascript easier to code and more powerful.
    https://en.wikipedia.org/wiki/JQuery
    I hope this is a helpful start.

  • What are the supported countries?

    What are the supported countries in order to be able to convert and export?

    Hi dollyp56,
    The ExportPDF online service is available for purchase in the following countries: Countries where ExportPDF is available for purchase.
    If you're wondering what languages are available for text recognition, please see this document: Using OCR in Adobe ExportPDF.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Did I miss something in the fine print? I installed Lion and and come to find out, I can no longer open any Word documents or Excel spreadsheets as they are no longer supported (being PowerPC apps).  Seriously?!?!?!?!!   What are my alternatives?

    Did I miss something in the fine print? I installed Lion and and come to find out, I can no longer open any Word documents or Excel spreadsheets as they are no longer supported (apparently because they are PowerPC apps).  Seriously?!?!?!?!!   What are my alternatives?

    Hi Mary and Matthew
    You might find it helpful to "try before you buy" - there is a 30 day free trial offer for Office for Mac 2011, accessible from M's .com website.
    You may be able to use this period to open and resave your old documents in a format that enables you to switch instead to using Apple's iWorks apps moving forward.
    I initially intended to do something similar, but ended up buying Office as it provided an easier way (for me, at least) to continue working with years worth of old emails, letters, spreadsheets and other documents (from my PC days) without risking damage to their integrity, formatting, etc.

  • What output formats are supported by SAPConnect in SAP CRM 7.0

    Is MHT document format and .doc format the only filetypes that are supported in SAP CRM 7.0? Could anyone please answer what are all the other output formats supported by SAP CRM 7.0.

    Hi,
    For interactive CRM report, please try link
    http://help.sap.com/bp_crm70/BBLibrary/Documentation/C41_BB_ConfigGuide_EN_DE.doc
    On page of
    http://help.sap.com/bp_crm70/CRM_DE/HTML/index.htm
    you may find some other info related to BW analytics, maybe there is info for dashboard? I am not so sure.
    Hongyan

  • How to find out what are the functions supported by string class

    Hi,
    Can any one let me know how to find what are all the functions supported by the string class in standard(STL) library on solaris.
    Regards,
    Vignesh

    1. Any C++ textbook that covers the Standard Library will tell you about the standard string class. A good tutorial and reference for the entire Standard Library is "The C++ Standard Library" by Nicolai Josuttis, published by Addison Wesley.
    2. WIth Sun C++, the command
    man -s3C++ basic_string
    provides documentation for the default libCstd version of the Standard Library.
    3. You could look at the <string> header itself. I don't recommend that approach.

  • What are the Non SAP data sources supported for Analysis workbooks?

    AO 1.4 SP6
    BO 4.1 SP2
    What are the Non SAP data sources supported for Analysis workbooks?
    Thanks.

    HANA is a data source (which could contain non-SAP data)
    For other Excel front-ends that may connect to "non-SAP" data look at Live Office or Power BI by Microsoft - see Excel and Power BI connectivity to SAP BusinessObjects Universes | Power BI

  • What are the features supported in Cisco Prime Infrastructure for WLAN for autonomous AP's?

    What are the features supported in Cisco Prime Infrastructure for WLAN for autonomous AP’s?

    • PI provides visibility for autonomous  clients within the same list view as lightweight and wired clients (client list  page).
    • Rogue AP detection for autonomous AP's is not supported (it's  supported in CUWN). 
    • Alarms/events for client authentication issues (e.g.  authentication failure) are displayed in PI.
    • Config management for  autonomous AP's is via CLI template.  Config comparison and archiving  functionality in PI leverages these same features that were brought in from LMS,  so need to defer to others in terms of whether this is a cross-platform feature  in PI or is only supported on a subset of platforms.  Config comparison/archive  is supported in CUWN.PI supports both infrastructure (e.g. AP Tx Power and  Channel, busiest AP, AP utilization, etc.) and client (e.g. client count, client  sessions, etc.) reports, and there are extensive reports for CUWN

  • What are the key components to be mointored after support pack installation

    I m an PI developer ,last Friday Basis installed the service pack 15 in Quality box . They are asking me to mointor the QPI to make sure everything is running fine and let them know so they can install the service pack in Production box.
    Apart from normal monitoring of the system ( RWB and SXMB* ), what are the other components i need to monitor.
    Can you tell me what to be monitored after Support pack installation.

    Hi,
    1) If CCMS is configured then you can monitor this as well (RZ20)
    2) Keep an eye on Queues
    Regards,
    I m an PI developer ,last Friday Basis installed the service pack 15 in Quality box . They are asking me to mointor the QPI to make sure everything is running fine and let them know so they can install the service pack in Production box.
    Apart from normal monitoring of the system ( RWB and SXMB* ), what are the other components i need to monitor.
    Can you tell me what to be monitored after Support pack installation.

  • What are the API's and OS Supported by Oracle TimesTen

    1.) What are all the API supported by oracle TimesTen?
    is the below are correct and whether other than this is there any other API supports oracle TimesTen
    JDBC,
    ODBC,
    OLAP,
    ADO.net,
    C++...............
    2.) What are the Platform supports?
    is the below are correct and whether other than this is there any other OS supports oracle TimesTen
    Linux x86-32 and x86-64:
    Oracle Linux 4 and 5
    Red Hat Enterprise Linux 4 and 5
    SUSE Enterprise Server 10 and 11
    MontaVista Linux CGE 5.0 and 6.0
    Asianux 3.0
    Microsoft Windows x86-32 and x86-64:
    Windows XP, Windows Vista, Windows Server 2003, Windows Server 2003 Release 2, Windows Server 2008, Windows 7
    Solaris SPARC 64-bit:
    Oracle Solaris 10
    Solaris x86-64:
    Oracle Solaris 10
    IBM AIX 64-bit:
    AIX 6.1 and 7.1
    Solaris SPARC 32-bit (client only):
    Oracle Solaris 10
    IBM AIX 32-bit (client only):
    AIX 6.1 and 7.1
    3.) What is the latest Version in Oracle TimesTen?
    4.) Maximum number of rows in a table.     2 Power 28 = 268,435,256 for 32 Bit     / (2 power 31-1) = 2,147,483,647 for 64 Bit
    if the Row value exceeds more than the specified value what will happen ? whether we need to have multiple tables
    Say TableA reaches 268,435,256 values and if few more rows are added then the value can be kept in new table TableB and so on..... or how?
    Thanks

    Dear 933663,
    1. What are all the API supported by oracle TimesTen?
    JDBC
    ODBC
    ADO.net
    OCI
    PRO*C
    +
    PL/SQL
    SQL
    2. What are the Platform supports?
    TimesTen 11.2.2.2.0 supports - Windows (32-bit, 64-bit), Linux x86 (32-bit, 64-bit), Solaris Sparc (64-bit), Solaris x86 (64-bit), IBM AIX Power (64-bit) (http://www.oracle.com/technetwork/products/timesten/downloads/index.html)
    The detailed information I could find only in 11.2.1 documentation (http://docs.oracle.com/cd/E18283_01/timesten.112/e13063/install.htm):
    Microsoft Windows 2000, Windows XP, Windows Vista and Windows Server 2003 and 2008 for Intel IA-32 and EM64T and AMD64 CPUs.
    Asianux 2.0 and 3.0 for Intel IA-32 and EM64T and AMD64 CPUs.
    SuSE LINUX Enterprise Server 10 for Intel IA-32 and EM64T and AMD64 CPUs.
    SuSE LINUX Enterprise Server 10 for Itanium2 CPUs
    Solaris 9 and 10 for UltraSparc CPUs
    Solaris 10 for AMD64 CPUs
    Red Hat Enterprise Linux 4 and 5 for Intel Itanium2 CPUs.
    Red Hat Enterprise Linux 4 and 5 for Intel IA-32 and EM64T and AMD64 CPUs.
    Oracle Enterprise Linux 4 and 5 for Intel IA-32 and EM64T and AMD64 CPUs.
    MontaVista Linux Carrier Grade Edition Release 4.0 and 5.0 for Intel IA-32, EM64T and AMD64 CPUs.
    HP-UX 11i v2 and 11iv3 for PA-RISC
    HP-UX 11i v2 and 11iv3 for Itanium2
    AIX 5L 5.3 and 6.1 for POWER CPUs
    3.) What is the latest Version in Oracle TimesTen?
    11.2.2.2.0 (http://www.oracle.com/technetwork/products/timesten/downloads/index.html)
    4) Maximum number of rows in a table. 2 Power 28 = 268,435,256 for 32 Bit / (2 power 31-1) = 2,147,483,647 for 64 Bit
    Actually, I couldn't find any information about rows limits for TimesTen tables and I've never faced with this problem.
    Best regards,
    Gennady

Maybe you are looking for

  • Enhanced Flash Builder Code Generation Functionality

    For voting in JIRA: https://bugs.adobe.com/jira/browse/FB-27169 The code generation feature FB 4 currently has is only really useful for quick throwaway prototyping or very simple forms. The generation should allow you to configure formatting via def

  • I can copy and paste from mozilla to word in second attempt only first attempt fails and paste a zero sized dot on the word document

    i can copy and paste from Mozilla to word in second attempt only first attempt fails and paste a zero sized dot on the word document.more ever i can not drag fevicon from address bar to my desktop.

  • DBCA is not showing all options

    Could any one shed some light on why DBCA showing few options and why not showign other options? -- 3 node RAC environment for examle: followin options are disabled: Configure database options Delete a database instance management service management

  • Problems connecting to internet

    Hi all, I have recently installed Solaris 10 11/06 x86 and it appears to be running interference with my broadband router, I'm quite new to Solaris and Unix as a whole so am lost as to how to track and fix this problem (if it is fixable). Please help

  • Supressing output type for Item lebel data

    Hi all, I have done a out put type set up for MIRO transaction. So when after putting the data, the transaction will saved then it will trigger an idoc. But the problem is that in its triggering more than one IDOC. I want only one idoc to be trigger