Skip to main content

Home/ Coders/ Group items matching "stores" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
1More

Newspaper App Malaysia | Latest Breaking News App Nigeria| Top Malaysia News App - 0 views

  •  
    Top Malaysia News is a Latest News App for Malaysia.This breaking news application is a great collection of all top Malaysian newspapers in a single app in Malay,English and Chinese language too.
11More

Building Windows for the ARM processor architecture - Building Windows 8 - MSDN Blogs - 5 views

  • apps from Microsoft
    • Joel Bennett
       
      These are "apps from Microsoft" ... not necessarily Office. Note that Office 15 doesn't include Outlook!
  • desktop versions
  • WOA supports the Windows desktop experience including File Explorer, Internet Explorer 10 for the desktop, and most other intrinsic Windows desktop features
    • Joel Bennett
       
      I can't decide if this is a goot thing or not. It seems like it supports the Windows desktop BUT NOT 3rd party desktop apps -- is this just because they couldn't get around to rewriting all the utility apps in Metro style (and recompiling was easier), or because they actually want to support deskop apps?
  • ...3 more annotations...
  • integrated, end-to-end products—hardware, firmware and WOA software
  • Partners will provide WOA PCs as integrated, end-to-end products that include hardware, firmware, and Windows on ARM software
    • Joel Bennett
       
      Read this as: WOA devices are not user-serviceable, you won't be able to sideload apps, and you deffinitely shouldn't expect to be able to build your own from parts.
  • Within the Windows desktop, WOA includes desktop versions of the new Microsoft Word, Excel, PowerPoint, and OneNote, codenamed “Office 15”. WOA will be a no-compromise product for people who want to have the full benefits of familiar Office productivity software and compatibility, an industry-leading hardware-accelerated web browser, apps from Microsoft, and access to apps in the Windows Store.
    • Joel Bennett
       
      "No compromise" ... that's certainly one spin on it.
  •  
    The definitive Windows On ARM post.
8More

STXXL : Standard Template Library for Extra Large Data Sets - 4 views

  • The key features of STXXL are:
  • Transparent support of parallel disks. The library provides implementations of basic parallel disk algorithms. STXXL is the only external memory algorithm library supporting parallel disks.
  • The library is able to handle problems of very large size (tested to up to dozens of terabytes).
  • ...4 more annotations...
  • Improved utilization of computer resources. STXXL implementations of external memory algorithms and data structures benefit from overlapping of I/O and computation.
  • Small constant factors in I/O volume. A unique library feature called "pipelining" can save more than half the number of I/Os, by streaming data between algorithmic components, instead of temporarily storing them on disk. A development branch supports asynchronous execution of the algorithmic components, enabling high-level task parallelism.
  • Shorter development times due to well known STL-compatible interfaces for external memory algorithms and data structures.
  • For internal computation, parallel algorithms from the MCSTL or the libstdc++ parallel mode are optionally utilized, making the algorithms inherently benefit from multi-core parallelism.
  •  
    « The core of STXXL is an implementation of the C++ standard template library STL for external memory (out-of-core) computations, i. e., STXXL implements containers and algorithms that can process huge volumes of data that only fit on disks. »

Moody . Casquette Porsche - 0 views

started by subsequent1 subsequent1 on 17 Jan 14 no follow-up yet
2More

Silent On GEO Locations - 0 views

  •  
    The Silent on Geo Locations application lets users change the phone mode based on Geo Locations. It allows users to track locations for which the phone needs to be turned into silent mode. The application quickly detects the current GEO Location & turns your android smart phone into silent mode.
  •  
    The Silent on Geo Locations application lets users change the phone mode based on Geo Locations. It allows users to track locations for which the phone needs to be turned into silent mode. The application quickly detects the current GEO Location & turns your android smart phone into silent mode.
1More

Kids Car Racing mania - 0 views

  •  
    The quicker the answers, ★★★★★ the faster the car runs. ★★★★★ Hey Children! Learn multiplication with this car racing game designed specially for kids. Racing excites and thrills. With your customized car you can race with the machine and can check how fast you are with multiplication concept. Playing the game will add value to your learning. Cheers! Treat yourself with thrilling car racing and have fun with multiplication tables. This is an extremely engaging application for kids to practice multiplication while having fun.
19More

Values, Types, and Operators :: Eloquent JavaScript - 0 views

  • Not all operators are symbols. Some are written as words. One example is the typeof operator, which produces a string value naming the type of the value you give it.
  • Having such numbers is useful for storing strings inside a computer because it makes it possible to represent them as a sequence of numbers. When comparing strings, JavaScript goes over them from left to right, comparing the numeric codes of the characters one by one.
  • There is only one value in JavaScript that is not equal to itself, and that is NaN, which stands for “not a number”.
  • ...16 more annotations...
  • In practice, you can usually get by with knowing that of the operators we have seen so far, || has the lowest precedence, then comes &&, then the comparison operators (>, ==, and so on), and then the rest. This order has been chosen such that, in typical expressions like the following one, as few parentheses as possible are necessary:
  • The difference in meaning between undefined and null is an accident of JavaScript’s design, and it doesn’t matter most of the time. In the cases where you actually have to concern yourself with these values, I recommend treating them as interchangeable (more on that in a moment).
  • . Yet in the third expression, + tries string concatenation before numeric addition
  • When something that doesn’t map to a number in an obvious way (such as "five" or undefined) is converted to a number, the value NaN is produced.
  • Further arithmetic operations on NaN keep producing NaN, so if you find yourself getting one of those in an unexpected place, look for accidental type conversions.
  • g ==, the outcome is easy to predict: you should get true when both values are the same, except in the case of NaN.
  • But when the types differ, JavaScript uses a complicated and confusing set of rules to determine what to do. In most cases, it just tries to convert one of the values to the other value’s type. However, when null or undefined occurs on either side of the operator, it produces true only if both sides are one of null or undefined.
  • That last piece of behavior is often useful. When you want to test whether a value has a real value instead of null or undefined, you can simply compare it to null with the == (or !=) operator.
  • The rules for converting strings and numbers to Boolean values state that 0, NaN, and the empty string ("") count as false, while all the other values count as true.
  • where you do not want any automatic type conversions to happen, there are two extra operators: === and !==. The first tests whether a value is precisely equal to the other, and the second tests whether it is not precisely equal. So "" === false is false as expected.
  • The logical operators && and || handle values of different types in a peculiar way. They will convert the value on their left side to Boolean type in order to decide what to do, but depending on the operator and the result of that conversion, they return either the original left-hand value or the right-hand value.
  • The || operator, for example, will return the value to its left when that can be converted to true and will return the value on its right otherwise. This conversion works as you’d expect for Boolean values and should do something analogous for values of other types.
  • This functionality allows the || operator to be used as a way to fall back on a default value. If you give it an expression that might produce an empty value on the left, the value on the right will be used as a replacement in that case.
  • The && operator works similarly, but the other way around. When the value to its left is something that converts to false, it returns that value, and otherwise it returns the value on its right.
  • Another important property of these two operators is that the expression to their right is evaluated only when necessary. In the case of true || X, no matter what X is—even if it’s an expression that does something terrible—the result will be true, and X is never evaluated. The same goes for false && X, which is false and will ignore X. This is called short-circuit evaluation.
  • - to negate a number
1More

Graph Database Tutorial - 0 views

  •  
    Graph databases are still quite unfamiliar to many developers. This is the first post in a series discussing the operations a graph database makes available to the developer. Just like there are only so many different things you can do on a relational database (like CREATE TABLE or INSERT), there are only so many things you can do on a graph database. It is worth looking at them one at a time, and that's the goal of this series.
1More

GearXS - Computer Components , Peripherals, Accessories - 0 views

  •  
    Saw a really good deal on a gaming headset today... figure they pro'ly have good deals other days.
1More

Text* Snippets: tagging and storing useful source code snippets - 0 views

  •  
    TextSnippets is a repository for short snippets of code categorized by keyword tags (sponsored by Joyent & Textdrive)
6More

Fabulous Adventures In Coding : The Stack Is An Implementation Detail, Part One - 0 views

  • Almost every article I see that describes the difference between value types and reference types explains in (frequently incorrect) detail about what “the stack” is and how the major difference between value types and reference types is that value types go on the stack.
  • I find this characterization of a value type based on its implementation details rather than its observable characteristics to be both confusing and unfortunate. Surely the most relevant fact about value types is not the implementation detail of how they are allocated, but rather the by-design semantic meaning of “value type”, namely that they are always copied “by value”.
  • Of course, the simplistic statement I described is not even true. As the MSDN documentation correctly notes, value types are allocated on the stack sometimes. For example, the memory for an integer field in a class type is part of the class instance’s memory, which is allocated on the heap.
  • ...3 more annotations...
  • As long as the implementation maintains the semantics guaranteed by the specification, it can choose any strategy it likes for generating efficient code
  • That Windows typically does so, and that this one-meg array is an efficient place to store small amounts of short-lived data is great, but it’s not a requirement that an operating system provide such a structure, or that the jitter use it. The jitter could choose to put every local “on the heap” and live with the performance cost of doing so, as long as the value type semantics were maintained
  • I would only be making that choice if profiling data showed that there was a large, real-world-customer-impacting performance problem directly mitigated by using value types. Absent such data, I’d always make the choice of value type vs reference type based on whether the type is semantically representing a value or semantically a reference to something.
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.
3More

Mobile Wiki Server for iPhone - Welcome - 0 views

  •    April 26th 2009 1.3.5 Pending Approval
    • David Corking
       
      Does this mean "pending approval by Apple for the app store"?
  •  
    I can't see the point of having a wiki web server in your pocket but that is probably my failing. Maybe it is handy as a private notebook you can also share informally. This is the first finished Squeak application for the iPhone.

Good SEO Staff and Services - 2 views

started by Jay Dee on 25 Jan 11 no follow-up yet

IT Solutions That Really Work - 1 views

started by Syntacticsinc SEO on 24 Sep 11 no follow-up yet
1More

DZone Snippets: Store, sort and share source code, with tag goodness - 2 views

  •  
    Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
2More

imm.io - miseajourordi.png ^^, 2011-10-26 - 1 views

  •  
    On OS automatic updates : Mac vs Linux vs Windows :- ]
  •  
    After changing from ubuntu linux to mac, I actually find the mac updates more onerous than in ubuntu. I have to restart my computer? Because the software changed? Also I need a credit card to update software that's from the app store?
« First ‹ Previous 81 - 100 of 109 Next ›
Showing 20 items per page