Skip to main content

Home/ Coders/ Group items tagged calls

Rss Feed Group items tagged

Joel Bennett

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.
Joel Bennett

Zeroconf NetServices - Zeroconf for .NET - 0 views

  •  
    Zeroconfig is a protocol used for automatic discovery of services on networks, which was popularized by Apple as Rendezvous and is now called Bonjour... this is an implementation in C# for .Net
Joel Bennett

Polyglot Programming | Dr. Dobb's | May 1, 2002 - 0 views

  • Everyone will benefit, even the Java community: Now that there's competition again, new constructs are—surprise!—again being considered for Java
  • Do languages have to sacrifice anything?
  • .NET goes much further: A routine written in a language L1 may call another routine written in a different language L2. A module in L1 may declare a variable whose type is a class declared in L2, and then call the corresponding L2 routines on that variable. If both languages are object oriented, a class in L1 can inherit from a class in L2. Exceptions triggered by a routine written in L1 and not handled on the L1 side will be passed to the caller, which—if written in L2—will process it using L2's own exception-handling mechanism. During a debugging session, you may move freely and seamlessly across modules written in L1 and L2. I don't know about you, but I've never seen anything coming even close to this level of interoperability.
  •  
    This ability to mix languages offers great promise for the future of programming languages, as the practical advance of new language designs will no longer be hindered by the library issue ...
Joel Bennett

WPF 3 (aka VS 2008 and .NET 3.5 SP1) ... Beta - Tim Sneath - 0 views

  •  
    The WPF team is particularly excited about .Net 3.5 SP1, calling it the Third Major Release of Windows Presentation Foundation ...
Joel Bennett

The Pudding - 0 views

  •  
    Make free calls from this web page to anywhere in the USA ... while a computer analyzes your conveersation and pops up web pages, news, images (*ahem*: advertisements) on the web page which are "relevant to your conversation" ... Free, but with a price.
Joel Bennett

Oxite - MIX Online Labs - 0 views

  •  
    Microsoft an ASP.Net MVC "Sample" (or is it a starter kit?) source code that can be used by Web developers to build blog engines into sites ... it's called "Oxite" and it's the software running the blogs on MIX Online. http://www.codeplex.com/oxite
Maurice G.

GLIntercept - 0 views

  •  
    GLIntercept is a OpenGL function call interceptor
Joel Bennett

Orange Data Mining - 1 views

  •  
    Orange is a component-based data mining software. It includes a range of preprocessing, modelling and data exploration techniques. It is based on C++ components, that are accessed either directly (not very common), through Python scripts (easier and better), or through GUI objects called Orange Widgets.
Joel Bennett

Starksoft .NET/Mono Proxy Client | Get Starksoft .NET/Mono Proxy Client at SourceForge.net - 0 views

  •  
    NET/Mono 2.0 Component for creating client side proxy connections to SOCKS v4, SOCKS v4a, SOCKS v5, and HTTP proxy servers. Returns a System TcpClient object once the proxy connection is established. Async calls supported. Examples in C# and VB.NET.
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
David Corking

JavaScript as a Functional Language | Ajaxonomy | 2009 - 0 views

  • there is a little bit of hand-waving involved in calling JavaScript a functional language. JavaScript is not a side-effect free language, nor is it an expression-based language (i.e., it is not value-oriented, but rather variable-oriented). There is no tail call optimization in any of the current implementations, so recursion must be kept shallow. And the list goes on. Truth be told, JavaScript is really one of the first hybrid imperative-functional languages.
  • Higher-order functions allow us to do functional composition,
  • Since JavaScript does not have "overloaded" functions, this type of functionality is usually simulated using manipulation of the function's arguments. Currying comes in handy because it allows you to do this manipulation in a much cleaner and more modular way.
  • ...1 more annotation...
  • Closures have quite a few applications in real-world JavaScript: event binding, callbacks, sorting, mapping (in the classical Lisp sense), and many others. In more modern JavaScript programming, you can find them almost everywhere.
  •  
    This is a short tutorial approach to an old but little-noticed saw.
Joel Bennett

Introduction ‎(Google Wave Federation Protocol)‎ - 0 views

  •  
    Google launches Wave, a new collaboration and communication platform built around hosted conversations called waves, and an API allowing developers to take advantage of the system....
Joel Bennett

Google-Voice-JAVA - Programmatically control Google Voice - 2 views

  •  
    "The goal of this project is to bring programmatic control of Google Voice to Java Developers. This includes Placing Calls, Sending SMS messages, and viewing Inbox, Voicemails etc. Developers are welcome to contribute to this Open Source project. "
Fabien Cadet

Doctrine - PHP Object Relational Mapper - 2 views

  •  
    Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.
alex gross

C# to JavaScript: HOWTO Declare JSON - JavaScript Object Notation - 5 views

  •  
    JSON, short for JavaScript Object Notation, is a lightweight computer data interchange format. It is a text-based, human-readable format for representing simple data structures and associative arrays (called objects). This example illustrates how to declare a JSON Contact structure.
Joel Bennett

Code Bubbles Project: Rethinking the User Interface Paradigm of Integrated Development ... - 5 views

  • A bubble is a fully editable and interactive view of a fragment such as a method or collection of member variables. Bubbles, in contrast to windows, have minimal border decoration, avoid clipping their contents by using automatic code reflow and elision, and do not overlap but instead push each other out of the way.
  •  
    We propose a novel user interface metaphor for code understanding and maintanence based on collections of lightweight, editable fragments called bubbles, which form concurrently visible working sets.
Fabien Cadet

Your Architecture Sucks and I Don't Care, by Ryan, 2011-01-03 | Friendly Dingo Blog - 10 views

  •  
    "Besides, who am I to say your architecture sucks? And why don't I care? Because I am your users, and I don't care what your codebase looks like, I don't care what it's called, and I don't care what language it's written in. I care that it solves my problem in the simplest and fastest way possible."
liza cainz

Help Gurus Help and Support Computer Upgrades - 1 views

Help Gurus really helped me in upgrading my snail computer by their help and support services for computer upgrade. Help Gurus gave me the computer help that I needed for PC upgrading! They changed...

support service Desktop computer technical services PC tech

started by liza cainz on 17 Jan 11 no follow-up yet
liza cainz

Help Gurus Offers Microsoft Tech Support - 1 views

Help Gurus offers Microsoft Tech Support for customers who are using windows application on their computers. They can give you quality technical support for Microsoft office applications, like Exce...

support service Desktop computer technical services PC tech

started by liza cainz on 19 Jan 11 no follow-up yet
liza cainz

Efficient and Secured Computer Support - 1 views

Several months ago, I decided to change my Microsoft Windows support provider. The Microsoft help company I was using was not proficient in what they do. A friend of mine referred HelpGurus Compute...

support service Desktop computer technical services PC tech

started by liza cainz on 10 Feb 11 no follow-up yet
« First ‹ Previous 61 - 80 of 297 Next › Last »
Showing 20 items per page