Skip to main content

Home/ Cloud Computing/ Group items tagged open

Rss Feed Group items tagged

Justin Pierce

Tested And Trusted Bookkeeping Service - 1 views

When I opened my mini grocery last year, I immediately asked Bookkeepers On Call to do the bookkeeping services for me because I know it from my sister that they provide the most trusted bookkeeper...

started by Justin Pierce on 29 Oct 12 no follow-up yet
John Li

Learn about could computing | Eucalyptus Community - 0 views

shared by John Li on 30 Aug 10 - Cached
    • John Li
       
      like eucalyptus for the cloud computing
  •  
    What is cloud computing? Cloud computing is the access to computers and their functionality via the Internet or a local area network. Users of a cloud request this access from a set of web services that manage a pool of computing resources (i.e., machines, network, storage, operating systems, application development environments, application programs). When granted, a fraction of the resources in the pool is dedicated to the requesting user until he or she releases them. It is called "cloud computing" because the user cannot actually see or specify the physical location and organization of the equipment hosting the resources they are ultimately allowed to use. That is, the resources are drawn from a "cloud" of resources when they are granted to a user and returned to the cloud when they are released. A "cloud" is a set of machines and web services that implement cloud computing.
Toshiro Shimura

Open Tech Press | 米Gartner、「クラウドコンピューティングは成熟まで数年を要する」 - 0 views

  • Gartnerは「クラウドコンピューティング」を、「インターネット技術を利用し、拡張性を持つIT関連機能がサービスとして複数の顧客に提供されるコンピュータスタイル」と定義している。これにより、ITを利用するユーザーはサービスの実装を気にすることなく、どんなサービスが利用できるのかにフォーカスできるという。
  • 現在、クラウドコンピューティングという用語はまだ混乱と矛盾があり、提供されるサービスもさまざまだという。Gartnerは主として、コンピューティング、ストレージ、CRMなどの業務アプリケーションなどを挙げている。
  • ITベンダーの成熟度もばらつきがあり、コンシューマにフォーカスした企業の方が成熟度が高いという。クラウドコンピューティングがITベンダーに与える影響は膨大であり、米Amazonや米Wal-Martのように個人向けと企業向けの2つのブランドを持つことは収益増に有効とアドバイスしている。  だが、現時点ではクラウドコンピューティングは進行形のコンセプトであり、企業や個人ユーザーが複雑な機能を利用できるようになるのはまだ先とまとめている。
Toshiro Shimura

http://writer.zoho.com/public/help/zohoplugin/fullpage - 0 views

  • Zoho Plug-In for MS OfficeThe "Zoho Plug-in for Microsoft Office" bridges the gap between online and offline office productivity. Users task has been simplified much more with the fact that they have a choice to work offline on their documents and spreadsheets with Microsoft Word/Excel and still have these changes reflected directly online in their Zoho account (Writer/Sheet). The new plug-in enables users to :Create, edit and save their documents & spreadsheets directly to Zoho Writer/Sheet from within Microsoft Word/Excel. Alternatively, users can open and edit their Zoho documents & spreadsheets in Microsoft Word/Excel and save it back to their respective Zoho services (Writer/Sheet).Installation and UseUsers can download the Zoho plug-in here. As with all other windows application, the file name 'zohoplugin.exe' will be saved to your preferred location on your local machine. Installation is pretty simple, please remember to close all your MS Office applications before you install this plug-in. After the initial check is over, double click on the 'zohoplugin.exe' file to begin the installation process. A picture they say is worth a thousand words and with all them arranged in a slide show using Zoho Show is certainly worth a million.
Balaji Ramamoorthy

Rackspace Cloud 'Drizzle' into Open Source Software - ServerWatch.com - 0 views

  •  
    "We've had issues with scaling MySQL in a multi-tenant environment like ours, so we've been looking at other database options and have been looking at Drizzle for over a year," Jonathan Bryce, co-founder of the Rackspace Cloud, told InternetNews.com.
Kelly Hair

Cloud security: Feds on cusp of change -- Federal Computer Week - 0 views

  • Virtualization has been setting the stage for many of these issues for years, he said, but “what cloud computing is forcing us to look at is the survivability of systems…and protecting the data,” Hoff said. “While I hear the perimeter is going away [as a security approach], I disagree; it’s multiplying and the diameter is contracting,” Hoff said. “You’re going to outsource responsibility, but not accountability. So we need open standards and better visibility.”
  •  
    Interesting view on depermeterisation. Hoff's view is that the protected assets are in smaller clumps and still have a perimeter.
john sega

Online Threats and Dangers - 1 views

I downloaded an audio file from an unpopular website, when I opened it my computer crashed and since then, I have troubles turning it on because it would no longer display the correct desktop setti...

Desktop Computer Support

started by john sega on 13 Jun 11 no follow-up yet
DJHell .

OpenSocial in the Cloud - OpenSocial - 0 views

  • Apps can grow especially fast on social networks, so before you launch your next social app, you should think about how to scale up quickly if your app takes off.
  • Unfortunately, scaling is a complex problem that's hard to solve quickly and expensive to implement.
  • If this app grows to serve millions of users and photos, shared hosting or even a dedicated server won't have the bandwidth or CPU cycles to handle all of the requests. We could invest in more servers and network infrastructure, shard the database, and load-balance requests, but that takes time, money, and expertise. If you'd rather work on the new features of the app, it's time to move into the cloud.
  • ...9 more annotations...
  • It's important to focus on the interactions between the app and your server when designing an application that will run in the cloud. If we standardize the communication protocol and data format, we can easily change the server side implementation without modifying the OpenSocial app.
  • You can configure the makeRequest method to digitally sign the requests your app makes to your server using OAuth's algorithm for parameter signing. This means that when your server receives a request, it can verify that the request came from your application hosted in a specific container. To implement this, the calls to makeRequest in the OpenSocial app spec XML specify that the request should be signed, and the code that handles requests on the server side verifies that a signature is included and valid
  • When our server receives a request, we can verify that it came from our application by checking that the digital signature was signed by a valid container and that the application ID is correct.
  • Since our server isn't storing any relationship data, the app will need to send us a list of user IDs so we can fetch the appropriate photos.
  • Although it's outside the scope of this article, we could provide a mechanism for our OpenSocial app to request a one-time-use token that it would include in the request to upload a photo.
  • Note that the post data is URL-encoded in the request so the post method uses urllib.unquote before splitting the comma-separated list of person IDs.
  • Since the server doesn't store any relationship data, the PhotosHandler class checks the post data of the request for a list of IDs from the container.
  • A common misconception when coding in the cloud is that storage space, CPU cycles, and bandwidth are unlimited. While the cloud hosting provider can, in theory, provide all the resources your app needs, hosting in the cloud ain't free so these resources are limited by your budget. Luckily, OpenSocial provides several mechanisms to cache images and data that will reduce the load on your server.
  • In addition to reducing traffic to our server, this technique has the added benefit of being fast—requesting data from the Persistence API is much faster than making the round trip to your server.
  •  
    Some OpenSocial apps can be written entirely with client-side JavaScript and HTML, leveraging the container to serve the page and store application data. In this case, the app can scale effortlessly because the only request hitting your server is for the gadget specification which is typically cached by the container anyway. However, there are lots of reasons to consider using your own server: * Allows you to write code in the programing language of your choice. * Puts you in control of how much application data you can store. * Lets you combine data from users on multiple social networks. * Enables interaction with the OpenSocial REST API. Setting up an OpenSocial app that uses a third party server is fairly simple. There are a few gotchas and caveats, but the real issues come up when your app becomes successful - serving millions of users and sending thousands of requests per second. Apps can grow especially fast on social networks, so before you launch your next social app, you should think about how to scale up quickly if your app takes off. Unfortunately, scaling is a complex problem that's hard to solve quickly and expensive to implement. Luckily, there are several companies that provide cloud computing resources-places you can store data or run processes on virtual machines. These computing solutions manage huge infrastructures so you can focus on your applications and let the "cloud" handle all the requests and data at scale. This tutorial focuses on a simple photo-sharing app that uses a third-party server to host photos and associated metadata. If this app is going to host millions of images and support many requests per second, we won't be able to run it on a single dedicated host. We'll break the app down and analyze the interactions between the OpenSocial App and the back end server. Then we'll implement the app in the cloud, first using Google App Engine, then leveraging Amazon's S3 data storage service. Finally, we'll look at s
Rich Hintz

Realities of open source cloud computing, Part 2: Developing for the cloud - 0 views

  •  
    Explore the design differences between a cloud application and a traditional N-tier application.
Alex MIkhalev

abiquo: enterprise open source cloud computing platform - 0 views

  •  
    cloud computing opensource platform
  •  
    cloud computing opensource platform
DJHell .

Amazon Web Services Developer Community : Auto-Scaling Web Sites Using Amazon EC2 and S... - 0 views

  •  
    Scalr provides the framework for the deployment of auto-scaling and auto-healing web sites using Amazon EC2. This tutorial walks through installing and setting up Scalr for your own site.
Maluvia Haseltine

OpenNebula :: The Open Source Toolkit for Building Clouds - 0 views

  •  
    OpenNebula is a Virtual Infrastructure Manager that orchestrates storage, network and virtualization technologies to enable the dynamic placement of multi-tier services (groups of interconnected virtual machines) on distributed infrastructures, combining both data center resources and remote cloud resources, according to allocation policies. OpenNebula provides internal and Cloud administration and user interfaces for the full management of the Cloud platform.
‹ Previous 21 - 40 of 42 Next ›
Showing 20 items per page