Skip to main content

Home/ Coders/ Group items tagged systems

Rss Feed Group items tagged

edy muryanto

What is API (Application Program Interface) - 0 views

  •  
    Application, System call interface serves as a liaison between the API and system call is understood by the operating system. System call interface will translate commands in the API and then will call the system calls required.
Fabien Cadet

Service Oriented Agony | 8th Light, 2012-02-01 by Bob Martin - 7 views

  • The structure seems obvious to system designers who have grown tired of single monolithic systems and want to break those systems up into components and services. What could be more natural than to break the system along the lines of data base managment?
  • Unfortunately this is a huge violation of the Single Responsibility Principle — or its big brother the Common Closure Principle.
  • These principles tell us to group together things that change together, and keep apart things that change for different reasons.
  • ...6 more annotations...
  • When you separate things that change for the same reasons, you have to make changes in many different places in the system.
  • So it’s a lot of work just to get anything working.
  • Moreover, when you group together things that change for different reasons, you expose the components of the system to collateral damage, thrashing, CM collisions, and a whole host of other problems.
  • So what’s the solution? First of all, I question whether the system needed to be partitioned into services.
  • Services are expensive and complicated, you should only create them if you absolutely need to. It’s always easier to live in a single process. Remember Martin Fowler’s first law of distributed objects: Don’t distribute your objects.
  • Many systems could be streamlined, and development made much faster, if the system designers paid more attention to the Single Responsibility Principle.
Mark Henry

Management Systems in Dubai | Software Company in Dubai - 0 views

  •  
    Kunooz Express, a foremost software corporation in Dubai, offers a wide range of software products. Most popular of them includes Leasing Management System, Integrated Online Cheque Clearing System (IOCCS), OCCS and Return Cheque Management System (RCMS). All these software products are developed according to the modern trends of automation.
Andrey Karpov

Lessons on development of 64-bit C/C++ applications - 0 views

  •  
    The course is devoted to creation of 64-bit applications in C/C++ language and is intended for the Windows developers who use Visual Studio 2005/2008/2010 environment. Developers working with other 64-bit operating systems will learn much interesting as well. The course will consider all the steps of creating a new safe 64-bit application or migrating the existing 32-bit code to a 64-bit system. The course is composed of 28 lessons devoted to introduction to 64-bit systems, issues of building 64-bit applications, methods of searching errors specific to 64-bit code and code optimization. Such questions are also considered as estimate of the cost of moving to 64-bit systems and rationality of this move.
Joel Bennett

Deriving from WebClient to handle persisting cookies for login - 0 views

  • Then just use the ExWebClient class to make your requests;
  • Public Class CookieWebClient : Inherits WebClient ' overridden to add cookie headers to http requests. Protected Overrides Function GetWebRequest(ByVal address As System.Uri) As System.Net.WebRequest Dim request As WebRequest = MyBase.GetWebRequest(address) If TypeOf request Is HttpWebRequest Then DirectCast(request, HttpWebRequest).CookieContainer = _cookies End If Return request End Function ' overridden to save cookies to the container for http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function ' overridden to save cookies to the container for async http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest, ByVal result As System.IAsyncResult) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request, result) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function Private Shared _cookies As CookieContainer = New CookieContainer End Class
Mark Henry

Cheque Clearing System Dubai | UAE Software Company - 0 views

  •  
    Integrated Online Cheque Clearing System is a web application, developed by kunooz express, to centralize the banking system. IOCCS creates an ease for central bank to organize and manage all the items at any sub-branch. Moreover, it allows customers to process large no of cheques automatically.
Joel Bennett

Examine Information on Windows NT System Level Primitives - CodeGuru - 0 views

  •  
    SourceCode and Compiled Binaries for two low-level system information tools: NtSysInfo explores Windows internals and enumerates system processes, windows, threads, objects. The WhoUses utility allows you to determine what process has a file or DLL locked.
Brevity Software Solutions Pvt Ltd

Leading Best Hotel Booking Engine Software Development Company - 0 views

  •  
    Brevity Software Solutions Pvt Ltd is an International Travel Portal Development Company. We provide development services for B2C and B2B travel web application development and travel API integration for hotel booking, car bookings, flight booking system, holiday booking system, tour reservation system, payment gateway integration, insurance, and cruise booking. Get more information please visit our website.
gooddeals907

Buy IELTS,PTE,CELPIP Certificates Without Any Exams,Buy Passports,Licenses,ID cards,Era... - 0 views

Buy IELTS,PTE,CELPIP Certificates Without Any Exams,Buy Passports,Licenses,ID cards,Erase Criminal Records,Buy Credit Card details and Credit Card Hack software. Buy CELPIP Certificate online ...

Buy IELTS PTE CELPIP Certificates Without Any Exams Passports Licenses ID cards Erase Criminal Records Credit Card details and Hack software

started by gooddeals907 on 18 Aug 23 no follow-up yet
Itech Theme

cpocket1 - 0 views

  •  
    CPocket is a complete CryptoCurrency secured wallet. The system platform is developed with the Laravel framework and MySQL. Our system is 100% Secure and Dynamic.
  •  
    CPocket is a complete CryptoCurrency secured wallet. The system platform is developed with the Laravel framework and MySQL. Our system is 100% Secure and Dynamic.
Biztech Consultancy

Impeccable for Businesses -The Inventory Management System - 0 views

  •  
    Inventory Management System Software to reduce the cost of information management about their product stocks. This is a software used to track products when they are shifted from a vendor to a warehouse, and finally to a retailer or directly to a customer. http://bit.ly/1nMW6Et
Joel Bennett

Ariadne Spoken Dialogue System - 0 views

  •  
    The System contains all necessary components to build a spoken dialogue system on your Windows desktop (using SAPI 5.1)
fatimarubiha

System Mechanic Pro Crack + Activation Key - 0 views

  •  
    System Mechanic Pro 22.7.2.104 Crack is the best PC tune-up utility tool in the world. you can clear up disc space by removing files.
Mark Henry

Dubai Return Cheque Management System | Software Company in Dubai - 0 views

  •  
    Kunooz Express has developed Return Cheque Management System, a web based application, for police departments to control bounced cheque cases. It also aid banks and organizations to report their cases online.
Andrey Karpov

I beg recommend to your colleagues the our big 64-bit C/C++ guide. - 0 views

  •  
    The course is devoted to creation of 64-bit applications in C/C++ language and is intended for the Windows developers who use Visual Studio 2005/2008/2010/2012 environment. Developers working with other 64-bit operating systems will learn much interesting as well. The course will consider all the steps of creating a new safe 64-bit application or migrating the existing 32-bit code to a 64-bit system.
florinamissah

Online Performance Evaluation System - 0 views

  •  
    Best online evaluation system to enhance the development and delivery of tests. Our online assessment software is a best online employee evaluation system of the technical use for instructors, students, and administrators.
Vincent Tsao

Asterisk at Home or Asterisk at Work in 30 MINUTES :: AsteriskNOW | - 0 views

  •  
    Asterisk® in minutes. AsteriskNOW is an open source Software Appliance; a customized Linux distribution that includes Asterisk (the leading open source telephony engine and tool kit), the AsteriskGUI™, and all other software needed for an Asterisk system. AsteriskNOW is easy to install, and offers flexibility, functionality and features not available in advanced, high-cost proprietary business systems.
Adildi ldinlio

Convergent Architecture Building Model-Driven J2EE Systems with UML|free ebooks download - 0 views

  •  
    Convergent Architecture Building Model-Driven J2EE Systems with UML free download at the ebst library for free ebooks download.
Joel Bennett

Why You Should Switch from Subversion to Git -- Carsonified - 0 views

  •  
    "You may want to give it a second look. Not just at distributed version control systems, but at the real role of version control in your creative toolkit. In this article, I'm going to introduce you to Git, my favorite DVCS, and hopefully show you why it is not only a better version control system than Subversion, but also a revolutionary way to think about how you get your work done."
David Corking

Jonathan Schwartz's Blog: Sun's Network Innovations (3 of 4) - 0 views

  • this datacenter systems market is more than $150b annually. And in this datacenter market we build exceptional systems
  • storage, from our new flash based platforms to eco-efficient tape and archive solutions.
  • more than just naked components, they're engineered with remote management and monitoring, component redundancy, integrated virtualization, and on board storage and networking. That's why our margins are higher than the industry's
  • ...7 more annotations...
  • we now build our entire line of storage systems from general purpose server parts, including Solaris and ZFS, our open source file system.
    • David Corking
       
      So, can anyone build a Sun storage device, or are Sun's "general purpose server parts" better (with better management and redundancy ...) ?
  • using a general purpose OS allows us to easily embrace specialized components (from flash memory to GPU's)
  • why am I paying you a million dollars?" I responded, "You can absolutely run it for free. You just can't call me on Christmas day, you'll be on your own." He gave me the PO.
    • David Corking
       
      Schwartz gives the strong impression of an IT company _without_ its hand in your pocket. It is a similar attitude and reputation, though with proprietary software, rather than services (for free software), that seems to have made Microsoft so wealthy in the late eighties and nineties.
  • Solaris OEM agreements with IBM, Dell, Intel, Fujitsu and HP are so important to our end customers - they know they'll never be locked in.
  • These open source platforms generate, alongside the services attached to them, over a billion dollars a year, making Sun by far and away the world's largest open source software company.
    • David Corking
       
      Hundreds of millions of dollars a year from open source Java alone!
  • Fighting free and open software, like fighting free news or free search, is like fighting gravity - and btw, gravity gets a lot stronger during economic downturns.
    • David Corking
       
      !
  • There is a robust, well-designed open source PBX Server called SipX that is primarily backed by Nortel (due to their acquisition of the creators, Pingtel).
  •  
    Making money - billions of dollars of it - with open specification hardware and open source software
1 - 20 of 277 Next › Last »
Showing 20 items per page