Skip to main content

Home/ Coders/ Group items tagged Cloud

Rss Feed Group items tagged

Mandeep Bajar

App logging API, Cloud Logging, Rest Logging API - 0 views

  •  
    Centralize logging for your App. This service allows different levels e.g. info, debug, fatal, error etc. to log a message and query the messages based on different parameters. You can fetch logs based on module, level, message, date range etc.
roberthayes222

Cocos2DSamples/README.md at master · shephertz/Cocos2DSamples · GitHub - 0 views

  • Cocos2DSamples Sample projects using Cocos2D and Shephertz SDKs Instructions to setup. Login/Sign-up on AppHQ (ShepHertz developer dashboard) @ http://apphq.shephertz.com From the dashboard, create a new app of type appwarp cloud gaming. Note its keys – you will require them to initialize the SDK in your code. From the dashboard, create a new room with 2 max players. Note its room id – you will require this in your code. Download the code from this repo and open the xcode project Edit GlobalContext.cs and replace the api_key, secret_key and room_id values from steps 3 and 4. Run the project on your device or simulator.
roberthayes222

File storage API - 0 views

  • File Storage Upload file in App42 Cloud with Single API call Data ubiquity with auto App42 CDN Service. File Upload Supports all formats, including Audio/Video/Text or other format Serve uploaded file to your app users using CDN network No infrastructure and server setup required AppHQ GUI consoles to manage all your uploaded files.
roberthayes222

User Management Api, Manage App Users, Create User for the App - 0 views

  • User Management Hassle free Use Management with secure authentication and authorization. No backend and server setup required Manage your app users using API or AppHQ UI Console Extend User Profile as much as you want. Create user engaging apps with easy to use APIs Activate and revoke user accounts with a single click.
Joel Bennett

codecov.io - 22 views

  •  
    Fantastic hosted code-coverage testing and reporting. Free for public open source projects on Github or Bitbucket, if you're writing in one of their supported languages (Python, Ruby, NodeJS, PHP) (using Travis or Codeship or CircleCI or Semaphore or Drone)
  •  
    indianescorts4 pakistaniescortsdubai escortsdubaiescorts dubaiescorts9 indianescorts90 nightescort uaegirls uaescorts69 uaegirls344 dubai-elite-model uaegirls69 escortsportfolio dubaiescorts50 indianescorts dubaiescorts pakistani escorts in dubai indianescorts dubai kissing escorts fleshandhide flatleather
  •  
    Required backend developer now drop your cv here https://www.owcareers.com/cv-drop-zone
alex gross

How to control your Amazon cloud spending? - 4 views

shared by alex gross on 14 Oct 10 - No Cached
  •  
    CloudRows enables you to define your IT budget as goal values, track actual spending and pinpoint potential budget exceptions to a specific time and region.
Joel Bennett

Bespin - Code in the Cloud - 0 views

  •  
    An html5-based web code-editor
Matteo Spreafico

Joe Duffy's Weblog - OnBeingStateful - 0 views

  • The biggest question left unanswered in my mind is the role state will play in software of the future.
  • The biggest question left unanswered in my mind is the role state will play in software of the future. That seems like an absurd statement, or a naïve one at the very least.  State is everywhere: The values held in memory. Data locally on disk. Data in-flight that is being sent over a network. Data stored in the cloud, including on a database, remote filesystem, etc. Certainly all of these kinds of state will continue to exist far into the future.  Data is king, and is one major factor that will drive the shift to parallel computing.  The question then is how will concurrent programs interact with this state, read and mutate it, and what isolation and synchronization mechanisms are necessary to do so?
  • Many programs have ample gratuitous dependencies, simply because of the habits we’ve grown accustomed to over 30 odd years of imperative programming.  Our education, mental models, books, best-of-breed algorithms, libraries, and languages all push us in this direction.  We like to scribble intermediary state into shared variables because it’s simple to do so and because it maps to our von Neumann model of how the computer works.
  • ...3 more annotations...
  • We need to get rid of these gratuitous dependencies.  Merely papering over them with a transaction—making them “safe”—doesn’t do anything to improve the natural parallelism that a program contains.  It just ensures it doesn’t crash.  Sure, that’s plenty important, but providing programming models and patterns to eliminate the gratuitous dependencies also achieves the goal of not crashing but with the added benefit of actually improving scalability too.  Transactions have worked so well in enabling automatic parallelism in databases because the basic model itself (without transactions) already implies natural isolation among queries.  Transactions break down and scalability suffers for programs that aren’t architected in this way.  We should learn from the experience of the database community in this regard
  • There will always be hidden mutation of shared state inside lower level system components.  These are often called “benevolent side-effects,” thanks to Hoare, and apply to things like lazy initialization and memorization caches.  These will be done by concurrency ninjas who understand locks.  And their effects will be isolated by convention.
  • Even with all of this support, we’d be left with an ecosystem of libraries like the .NET Framework itself which have been built atop a fundamentally mutable and imperative system.  The path forward here is less clear to me, although having the ability to retain a mutable model within pockets of guaranteed isolation certainly makes me think the libraries are salvageable.  Thankfully, the shift will likely be very gradual, and the pieces that pose substantial problems can be rewritten in place incrementally over time.  But we need the fundamental language and type system support first.
David Corking

Eucalyptus - 0 views

shared by David Corking on 08 Apr 09 - Cached
  • open-source software infrastructure for implementing "cloud computing" on clusters. The current interface to EUCALYPTUS is compatible with Amazon's EC2 interface, but the infrastructure is designed to support multiple client-side interfaces.
    • David Corking
       
      what it is
Joel Bennett

Windows Azure Code Samples - MSDN Code Galler - 3 views

  •  
    The Windows Azure Code Samples includes samples for running CGI apps, services, websites, and even PowerShell on Azure.
Matteo Spreafico

Windows Azure Table Browser - 0 views

  • The Windows Azure TableBrowser is a web based application that gives you the ability to browse your Windows Azure Storage tables and create, edit, delete, and copy entities.
Matteo Spreafico

Clemens Vasters, Bldg 42 : Port Bridge - 0 views

  • In order to increase the responsiveness and throughput for protocols that are happy to kill and reestablish connections such as HTTP does, “Port Bridge” is always multiplexing concurrent traffic that’s flowing between two parties on the same logical socket.
  • With Hybrid, all connections are first established through the Service Bus Relay and then our bits do a little “NAT dance” trying to figure out whether there’s a way to connect both parties with a direct socket – if that works the connection gets upgraded to the most direct connections in-flight.
  • Now you might say You are using a WCF ServiceContract? Isn’t that using SOAP and doesn’t that cause ginormous overhead? No, it doesn’t. We’re using the WCF binary encoder in session mode here. That’s about as efficient as you can get it on the wire with serialized data. The per-frame SOAP overhead for net.tcp with the binary encoder in session mode is in the order of 40-50 bytes per message because of dictionary-based metadata compression. The binary encoder also isn’t doing any base64 trickery but treats binary as binary – one byte is one byte. Port Bridge is using a default frame size of 64K (which gets filled up in high-volume streaming cases due to the built-in Nagling support) and so we’re looking at an overhead of far less than 0.1%. That’s not shabby.
Zulkarnain K.

JGate - Cloud Computing - 3 views

  •  
    JGate provides free AppJet hosting. AppJet is a proven technology stack that includes Rhino, Cloudscape/Derby, Jetty, Lucene, Comet, Processing, JQuery, XMLRPC and JSON. Programmers use it to produce server-powered, highly interactive web applications in a fraction of the time normally needed.
aalphasolutions

An Overview of Microservices Development - 0 views

  •  
    Microservices architecture is a software development service that is making the tech world improve on enterprise agility needs, scalability, and time market while providing high-quality software development.
baldwinjackson

Create a Responsive WordPress Theme On Bootstrap 3 - 1 views

  •  
    Curious About Responsive Custom WordPress Theme? With rapid increase in technology within a decade there are different resolutions, screen sizes, and operating systems available in the market, the need for responsive websites and applications has become essential for anyone looking to increase their online presence. WordPress custom responsive theme development is always a unclear topic with several write up available on internet.
jackmcmahon4

Buy Bing Ads Accounts - 100% Verified, Ready, Cheap Price & Instant Delivery - 0 views

  •  
    Buy Bing Ads Accounts Introduction Bing Ads is a pay-per-click (PPC) advertising platform, meaning that advertisers only pay when someone clicks on their ad. Businesses may develop and manage advertising campaigns on the Bing search engine using Bing Ads Accounts, a service. Businesses may target their advertising to display on Bing when users search for particular terms, and they can also monitor the number of times their ads are clicked. What is Bing Ads Accounts? Bing Ads Accounts are a tool that allows businesses to create and manage advertising campaigns on the Bing search engine. businesses can target their ads to appear when people search for specific terms on Bing, and can track how many people click on their ads. Buy Bing Ads Accounts Businesses that want to reach potential clients on the Bing search engine may find Bing Ads Accounts to be a useful tool. Businesses may grab the attention of qualified leads by targeting their advertising to appear when customers search for relevant terms. Businesses may also determine the success of their campaigns and make the required adjustments by monitoring the number of clicks on their advertisements. Buy Bing Ads Accounts Why should you use Bing Ads? With the help of the effective tool Bing Ads, companies of all sizes may advertise on the biggest search engine on the planet. Although there are several advantages to employing Bing Ads, the following four stand out as particularly compelling arguments: Bing Ads is reasonably priced. A sizable audience may see your adverts. Utilizing Bing Ads is simple. Different ad formats are available with Bing Ads. Being economical A cost-effective strategy to market your company is through Bing Ads. You can choose your own spending limit for your advertising campaign and only get charged when someone clicks on it. You can manage your spending because there is no minimum requirement. Speak to a Big Audience You may advertise to a wide audience using Bing Ads. With a 20% global m
  •  
    Buy Bing Ads Accounts Introduction Bing Ads is a pay-per-click (PPC) advertising platform, meaning that advertisers only pay when someone clicks on their ad. Businesses may develop and manage advertising campaigns on the Bing search engine using Bing Ads Accounts, a service. Businesses may target their advertising to display on Bing when users search for particular terms, and they can also monitor the number of times their ads are clicked. What is Bing Ads Accounts? Bing Ads Accounts are a tool that allows businesses to create and manage advertising campaigns on the Bing search engine. businesses can target their ads to appear when people search for specific terms on Bing, and can track how many people click on their ads. Buy Bing Ads Accounts Businesses that want to reach potential clients on the Bing search engine may find Bing Ads Accounts to be a useful tool. Businesses may grab the attention of qualified leads by targeting their advertising to appear when customers search for relevant terms. Businesses may also determine the success of their campaigns and make the required adjustments by monitoring the number of clicks on their advertisements. Buy Bing Ads Accounts Why should you use Bing Ads? With the help of the effective tool Bing Ads, companies of all sizes may advertise on the biggest search engine on the planet. Although there are several advantages to employing Bing Ads, the following four stand out as particularly compelling arguments: Bing Ads is reasonably priced. A sizable audience may see your adverts. Utilizing Bing Ads is simple. Different ad formats are available with Bing Ads. Being economical A cost-effective strategy to market your company is through Bing Ads. You can choose your own spending limit for your advertising campaign and only get charged when someone clicks on it. You can manage your spending because there is no minimum requirement. Speak to a Big Audience You may advertise to a wide audience using Bing Ads. With a 20% global m
« First ‹ Previous 61 - 80 of 80
Showing 20 items per page