Skip to main content

Home/ Coders/ Group items tagged programming languages

Rss Feed Group items tagged

selenium_labs

What is The Important Selenium with Java Interview Questions? - 0 views

  •  
    Java is a famous programming language and it is also the third most well-known back-end technology after SQL and JavaScript. Find some Selenium with Java interview questions here for better understanding selenium.
selenium_labs

Why Selenium With C# Training In Bangalore Is So Much In Demand? - 0 views

  •  
    The popular programming languages you can learn with Selenium are PHP, Java, Python, C#, etc. In this blog, we will discuss why Selenium with C# training in Bangalore has so much demand.
Daniel Gregoire

Selenium web application testing system - 4 views

  •  
    "automate web app testing across many platforms. " Fascinating new open source tool
  •  
    Test suite for web testing, multiple programming language interface, Firefox add-on with macro recording
Michael Collins

Top 10 Ways to Teach Yourself to Code - 0 views

  •  
    Very interesting article from lonekat. I have been teaching myself how to program for a while now.
David Corking

Coherence is an experimental programming language - Jonathan Edwards, MIT - 0 views

  •  
    Is this 'coherence' or subtextual programming a close cousin of Kenny Tilton's Cells?
Andreas Wagner

CLI - Command Line Interface Definition Language for C++ - Project Page - 0 views

  •  
    C++ Command Line Interfaces Standard C++-based implementation. No external dependencies, not even on a runtime library. Any fundamental or user-defined C++ type can be used as an option type. Automatic printing of formatted program usage information. Automatic documentation generation in the HTML and man page formats. Ability to read arguments from the argv array, file, and custom sources. Support for erasing parsed arguments from the argv array. Support for custom option formats. Multi-value option parsing into the std::vector, std::set, and std::map containers. Support for option aliases.
Andrey Karpov

A Collection of Examples of 64-bit Errors in Real Programs - 0 views

  •  
    This article is the most complete collection of examples of 64-bit errors in the C and C++ languages. The article is intended for Windows-application developers who use Visual C++, however, it will be useful for other programmers as well.
Mandeep Bajar

My Library - 0 views

  •  
    "PhoneGap gives you the power to write your App in JavaScript language and build it for native platforms like Android/iOS/Windows/BlackBerry etc. This saves a lot of time and effort for an App Developer as he won't have to write UI and Business Logic for porting it to different platforms. If your HTML 5 App is build using App42 Backend, you can also build your App for different platforms like Android and iOS using PhoneGap. App42 JavaScript APIs are compatible to work with PhoneGap. "
Zulkarnain K.

Stack Overflow - 0 views

  •  
    Stack Overflow is a collaboratively edited question and answer site for programmers - regardless of platform or language. Jump in and share your software engineering expertise! No registration or account required.
anonymous

dbscript php framework - 0 views

  •  
    dbscript is a web development framework, it helps php programmers take advantage of efficient design patterns and idioms from other dynamic languages and frameworks. for example, the Mapper and Route classes work together to map actions and records to distinct urls. among the many advantages of routes are the automatic named routes: url_for( resource ). restful urls, http-style controllers, atompub/html introspection documents and content-negotiation are among the sophisticated features of this programmer-centric development tool. the framework is a database abstraction layer, with built-in adapters for PostgreSQL and MySQL.
Denis Gobo

Collection Of Puzzles For Programmers - 1 views

  •  
    A nice collection of puzzles. Some are harder than others so there is something for everyone. You can pic any language you want, you will see that there are solutions in Ruby, Python, Visual Basic, SQL, JavaScript, C++ and others
Joel Bennett

F# (FSharp) - Microsoft Research - 0 views

  • F# is a programming language that provides the much sought-after combination of type safety, performance and scripting,
    • Joel Bennett
       
      In .Net ...
Fabien Cadet

Threads Cannot be Implemented as a Library - Boehm, Hans-J. - 0 views

  •  
    Abstract: In many environments, multi-threaded code is written in a language that was originally designed without thread support (e.g. C), to which a library of threading primitives was subsequently added. [...] We provide specific arguments that a pure library approach, in which the compiler is designed independently of threading issues, cannot guarantee correctness of the resulting code. [...]
Matteo Spreafico

Classical Inheritance in JavaScript - 0 views

  • function ZParenizor2(value) { var that = new Parenizor(value); that.toString = function () { if (this.getValue()) { return this.uber('toString'); } return "-0-" }; return that; }
    • Matteo Spreafico
       
      This constructors lies, wondeful!
  • Again, we augment Function. We make an instance of the parent class and use it as the new prototype. We also correct the constructor field, and we add the uber method to the prototype as well.
  • This adds a public method to the Function.prototype, so all functions get it by Class Augmentation. It takes a name and a function, and adds them to a function's prototype object.
  • ...3 more annotations...
  • To make the examples above work, I wrote four sugar methods. First, the method method, which adds an instance method to a class. Function.prototype.method = function (name, func) { this.prototype[name] = func; return this; };
  • JavaScript can be used like a classical language, but it also has a level of expressiveness which is quite unique. We have looked at Classical Inheritance, Swiss Inheritance, Parasitic Inheritance, Class Augmentation, and Object Augmentation. This large set of code reuse patterns comes from a language which is considered smaller and simpler than Java.
  • I have been writing JavaScript for 8 years now, and I have never once found need to use an uber function. The super idea is fairly important in the classical pattern, but it appears to be unnecessary in the prototypal and functional patterns. I now see my early attempts to support the classical model in JavaScript as a mistake.
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."
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.
Eitworld :education at one click

PHP Practical Book - 0 views

PHP is a server side scripting language basically known for its use in web development but also used as a general-purpose programming language. This book contains various minor projects which are h...

web

started by Eitworld :education at one click on 29 Jul 14 no follow-up yet
Chris Fung

30 Python Language Features and Tricks You May Not Know About - 1 views

  •  
    Since I started learning Python, I decided to maintain an often visited list of "tricks". Any time I saw a piece of code (in an example, on Stack Overflow, in open source software, etc. via Pocket
« First ‹ Previous 61 - 80 of 108 Next › Last »
Showing 20 items per page