Skip to main content

Home/ Coders/ Group items tagged basic

Rss Feed Group items tagged

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. »
17More

Develop With Passion® - Jean-Paul S. Boodhoo - 0 views

  • Being an effective unlearner enables you to take an unbiased look at a new way of approaching a situation/problem/challenge without the weight of being dragged down by your old baggage(ideas
  • Being an effective unlearner enables you to take an unbiased look at a new way of approaching a situation/problem/challenge without the weight of being dragged down by your old baggage(ideas)
  • One strategy to minimize this is to seek out and collaborate with people who make you feel a little out of your element
  • ...13 more annotations...
  • Unfortunately, with the large number of these blogs, many people have fallen into the trap of subscribing to too many
  • he started to get frustrated by the abscensce of any new insights/techniques he was sure would magically manifest when working through coding sessions.
  • Any man who reads too much and uses his own brain too little falls into lazy habits of thinking
  • Don't think about what you have accomplished. Rather, what you should have accomplished with your abilities.
  • People who allow themselves to get into this mode more often can find that the spikes in creativity that result, can carry forward with them into the stuff that they have to tackle on a day to day basic
  • Gifts, however , have to be opened, and then further used, if they are going to be of any value
  • When you think you have caught up with the skill of [developer x], either their skill level has increased or you have found another developer whose skill you covet
  • It's not about being the best. It's about being your best.
  • It can give them an change to explore and think about problemsthat they may not feel comfortable with
  • There will always be someone who is better than you, there will always be someone who is not.
  • If you end your days with the persitent feeling of "I do not feel like I got enough done", it could be an indicator that some significant diagnostics need to be performed
  • can create an environment where synergy, collaboration, and friendly competitiveness raise the level of all of the people on the team
  • Give your brain an opportunity to stretch itself.
  •  
    Great article about strategies you may follow and mistakes you may avoid to become a better programmer!
1More

.NET Application Extensibility: System.AddIn - CLR Inside Out - MSDN Magazine, February... - 0 views

  •  
    As of .Net 3.5, we will gain a built-in method for doing plugins in the .Net CLR -- This article explains the basics of plugins and is followed by a second article focusing on the new System.AddIn namespace

2More

Doing Objects in VB.NET and C# - TerrySmith.net - 0 views

  •  
    A basic eBook on object-oriented programming in VB.NET and C#. Covers construction and destruction, events, delegates, interfaces and inheritance, and exceptions.
  •  
    We're a 100% free online dating site. View photos of singles in your area, see who's online now! Never pay for online dating, chat with singles here for free. www.sugarhoneys4u.com Match.com is the number one destination for online dating with more dates, more relationships, & more marriages than any other dating or personals site. www.killdo.de.gg 1 in 5 relationships now start online. Start dating for free with match.com, the dating site with more relationships & marriages than any other site.
1More

Freebase - 0 views

  •  
    Freebase is an open shared knowledge database. It's basically an attempt to just skip the intervening steps and get straight to web 4.0 -- where you just ask about information and get answers.
1More

Localizing WPF Applications using LocBaml - 0 views

  •  
    Localization of WPF apps is basically done via Resource files, but there's a neat app called "LocBAML.exe" which comes with the .Net SDK which can help with that...
1More

Application Development Trends - Sun Provides Early Access to NetBeans Ruby Pack - 0 views

  •  
    The new NetBeans Ruby plugin sounds relly impressive: "features that go beyond basic editing, syntax highlighting, navigation outline, project support and unit test execution" to include extensive code completion, integrated documentation tooltips and even semantic analysis and highlighting!
1More

Security Development Lifecycle (SDL) Banned Function Calls - 0 views

  •  
    Microsoft's official list of "banned" unsafe function calls. Basically this is a list of all the SafeCRT and StrSafe.h function equivalencies ... along with a short discussion of the relative merits for StrSafe vs. SafeCRT... also includes some *very* useful examples.
1More

Annotea project - 0 views

  •  
    Annotea enhances collaboration via shared metadata based Web annotations, bookmarks, and their combinations ... that is, it allows comments, notes, explanations, etc to be "attached" to a web page or specific section of a web page ... and allows sharing these annotations with others.  '

    This is basically the W3Cs vision of how del.icio.us, diigo, etc ought to have worked...
1More

Concurrency: What Every Dev Must Know About Multithreaded Apps -- MSDN Magazine, August... - 0 views

  •  
    A comprehensive guide to the basics of multithreaded development...
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.
9More

Jonathan Schwartz's Blog: Sun's Cloud (4 of 4) - 0 views

  • our sales and partner force has a tenth the resources of our biggest peers.
    • David Corking
       
      Is he talking about IBM, EMC, Microsoft, Oracle, Cisco and SAP? I beat Sun has more pony tails than its peers. I would like to see those numbers.
  • inside Sun, we're just now rolling out a version of OpenOffice extended for the cloud.
    • David Corking
       
      Simple but sweet. I doubt it wil beat Google Docs for attracting collaborating groups, but it might! Corporations may want to do something similar with their private storage. How do they avoid malicious macros propagating from one cloud user to the next?
  • VB users will see a new feature later this year, offering an upload service to those wishing to archive or run multiple OS/application stacks - in Sun's Cloud.
    • David Corking
       
      VB doesn't mean "Visual Basic" any longer. This is clever leverage, I think, and one that will be supported by the open source community, because the cloud specs are open documents.
  • ...1 more annotation...
  • Clouds are just as interesting to students and startups as they are to Fortune 500 customers.
    • David Corking
       
      perhaps much more interesting?
  •  
    Inspiring radical vision for open source to win in the long term.
1More

The Big Computer Security - 0 views

  •  
    Security Computer for Programmer
1More

10 examples of using find command in UNIX - 0 views

  •  
    Here I am listing down some of the way I use find command regularly, I hope this would help some one who is new in UNIX and find command or any developer who has started working on UNIX environment. this list is by no means complete and just some of my favorites , if you have something to share please share via commenting.

knock off polarized ray bans Let us - 0 views

started by escaping1 escaping1 on 22 May 14 no follow-up yet

PHP Practical Book - 0 views

started by Eitworld :education at one click on 29 Jul 14 no follow-up yet
« First ‹ Previous 61 - 80 of 107 Next › Last »
Showing 20 items per page