Skip to main content

Home/ Coders/ Group items tagged Queries

Rss Feed Group items tagged

1More

tweetsharp - Google Code - 0 views

  •  
    A feature-complete fluent .net library for the Twitter API. A simple, discoverable, fluent interface for building Twitter queries, as well as additional features like asynchronous processing, server-side caching, url shortening, and rate throttling. Now go, create.
1More

Tweetsharp - 0 views

  •  
    TweetSharp is a complete .NET library for microblogging platforms that allows you to write short and sweet expressions that convert automatically to web queries and fly to Twitter on your behalf.
3More

LINQPad - 1 views

  •   LINQPad lets you interactively query SQL databases in a modern query language: LINQ.  Kiss goodbye to SQL Management Studio!
  • it's a highly ergonomic code snippet IDE that instantly executes any C#/VB expression, statement block or program – the ultimate in dynamic development.
  • Best of all, LINQPad standard edition is free and can run without installation (or with a low-impact setup)
1More

Open Data Protocol Q&A - 1 views

  •  
    "The Open Data Protocol (OData) is a web protocol for querying and updating data. OData applies web technologies such as HTTP, Atom Publishing Protocol (AtomPub) and JSON to provide access to information from a variety of applications, services, and stores. OData emerged organically based on the experiences implementing AtomPub clients and servers in a variety of products over the past several years."
1More

How to create SEO friendly url. - 0 views

  •  
    SEO friendly URL is recommended for any website which wants to be indexed and wants its presence in search results. Searchengine mostly index the static URL. It will avoid the URL which has lot of query strings. Almost all websites generate content dynamically then how could the URL be static. That is the job of the programmer. This article explains in view of Java Struts2 framework.
1More

Culture Queries: The best questions to ask in your interview - 0 views

  •  
    如果要在面試的時候詢問公司的文化,要怎麼樣發問比較適合?這個網站提供了一些可以選擇的項目,然後產生你適合詢問的問題,關鍵的因素包括每日工作行程,職涯發展,公司策略等等。 有趣的是,在每日行程裡面,竟然有一項是有美味的啤酒,我想這是在台式文化公司裡面沒有的。
1More

How to Build an App Like Alexa? - 0 views

  •  
    The future is here with voice and natural language serve up. This is an important step in marking the service of our digital systems to us, and we have begun from the age of landlines. We have slowly evolved to touch-based palm-sized phones and computers, and now we have Apple's Siri, Amazon's Alexa, Microsoft's Cortana, and Google Assistant. For the purpose of building voice and natural language capabilities into your own applications, one has to depend on cloud options. But if you are wondering why limit yourself only to Amazon or Apple, and create your own, you are on the right track. Anyone can build their system and enable the voice with multiple devices. It is only the difference of speech to text, followed by a query parser, a pipeline, a rules engine, and of course a pluggable architecture with mandatory open APIs.
2More

Online Homework Help, Tutoring Platform, Assignment Assistance- MyDocent - 0 views

  •  
    MyDocent, an online tutoring website offering best-in-class tutoring services to students globally. Our expert and experienced tutors are available 24x7 for students to help them clear their doubts and concepts. Our educators teach all subjects and standards and we provide online homework help and assignment assistance to students at economical prices. Just upload your query and get instant answers or assistance and secure better grades in your academics. www.mydocent.com

Finding Comprehensive Solutions to Everyday - 2 views

started by jackmelis81 on 05 Mar 24 no follow-up yet
1More

NoSQL Storage Api, NoSQL cloud Api, NoSQL Database Storage Api - 0 views

  • NoSQL Storage On the fly database creation for your app on the cloud Store app data in JSON objects at App42 Cloud in Single API call Powerful Query Interface to fetch your stored JSON objects Support of Map Reduce on your stored JSON objects No worries of installation, data disaster and recovery Runs inside scalable and secure App42 platform

Reminder: Parse Data Migration to ShepHertz App42 - 0 views

started by Mandeep Bajar on 30 Jan 17 no follow-up yet
1More

Download LINQPad - 0 views

  •  
    Start using LINQ for your ad-hoc SQL queries now, and get a head start on .Net 3.5
6More

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.
4More

Building Super-Scalable Web Systems with REST - 3 views

  • Standard fare for most dynamic data and the way most everybody would tell you to do it. Only thing is that it scales like a dog.
  • The thing is that holding all the weather of the entire globe in memory, well, takes a lot of memory. More than is reasonable. In which case, there’s a fairly decent chance that a given request can’t be served from the cache, resulting in a query to the database, an update to the cache, which bumps out something else, in short, not a very good hit rate.
  • If we were able to make our clients in London perform an HTTP GET on http://weather.myclient.com/UK/London then we could return headers in the HTTP response telling the intermediaries that they can cache the response for an hour, or however long we want.
  • ...1 more annotation...
  • Instead of getting hammered by millions of requests a day, the internet would shoulder easily 90% of that load making it much easier to scale. Thanks Al.
1More

OQGRAPH Engine for MySQL, MariaDB and Drizzle - 1 views

  • The Open Query GRAPH engine (OQGRAPH) is a computation engine allowing hierarchies and more complex graph structures to be handled in a relational fashion. In a nutshell, tree structures and friend-of-a-friend style searches can now be done using standard SQL syntax, and results joined onto other tables.

A Credible Service from Computer Support Specialists Today - 2 views

started by shen jesh on 08 Jul 11 no follow-up yet
‹ Previous 21 - 40 of 46 Next ›
Showing 20 items per page