Skip to main content

Home/ Groups/ Nerdzr
Jac Londe

Ajout de gadgets et de flux - Centre d'aide Recherche sur le Web - 0 views

  • Recherche sur le Web › Articles d'aide › iGoogle › Ajout et suppression › Ajout de gadgets et de flux  Ajout de gadgets et de flux Le contenu iGoogle peut se présenter sous deux formes : les gadgets et les flux.
Jac Londe

Amarino - "Android meets Arduino" - 0 views

  • make thoses phone events visible somewhere else, on your wearable, in your living room, on your robot, in your office or where ever you want it to occur? Or would you like to use your smartphone sensors, like the accelerometer, light sensor, compass or your touchscreen to control other devices? 'android meets arduino' is a toolkit, basically consisting of an Android application and an Arduino library which will help you to interface with your phone in a new dimension. You can build your own interfaces almost without any programming experience.
    • Jac Londe
       
      L'Objet allié au Script par excellence Quoi de plus intéressant que de découvrir de nouveaux outils qui permettent de trancender la réalité. La virtualité transmue la réalité à distance. Le téléphone intelligent Le système d'opération Le réseau universel La plate-forme robotique Les logiciels de création Les applications
Jac Londe

Arduino - Introduction - 0 views

  • What is Arduino?
  • Arduino is a tool for making computers that can sense and control more of the physical world than your desktop computer. It's an open-source physical computing platform based on a simple microcontroller board, and a development environment for writing software for the board.
  • Inexpensive - Arduino boards are relatively inexpensive compared to other microcontroller platforms. The least expensive version of the Arduino module can be assembled by hand, and even the pre-assembled Arduino modules cost less than $50
  • ...4 more annotations...
  • Cross-platform - The Arduino software runs on Windows, Macintosh OSX, and Linux operating systems. Most microcontroller systems are limited to Windows.
  • Simple, clear programming environment - The Arduino programming environment is easy-to-use for beginners, yet flexible enough for advanced users to take advantage of as well. For teachers, it's conveniently based on the Processing programming environment, so students learning to program in that environment will be familiar with the look and feel of Arduino
  • Open source and extensible software- The Arduino software and is published as open source tools, available for extension by experienced programmers. The language can be expanded through C++ libraries, and people wanting to understand the technical details can make the leap from Arduino to the AVR C programming language on which it's based. SImilarly, you can add AVR-C code directly into your Arduino programs if you want to.
  • Open source and extensible hardware - The Arduino is based on Atmel's ATMEGA8 and ATMEGA168 microcontrollers. The plans for the modules are published under a Creative Commons license, so experienced circuit designers can make their own version of the module, extending it and improving it. Even relatively inexperienced users can build the breadboard version of the module in order to understand how it works and save money.
Jac Londe

Single Sign On - Login - 0 views

  •  
    jpl@g.c22LesFlics
Jac Londe

Lenovo U1 Hybrid and Skylight: What You Need To Know | News & Opinion | PCMag.com - 0 views

  •  
    Lenovo U1 Hybrid
Jac Londe

Solar power, with a side of hot running water - 0 views

  • The conversion of sunlight into electricity has been dominated by photovoltaic and solar thermal power generation. Photovoltaic cells are deployed widely, mostly as flat panels, whereas solar thermal electricity generation relying on optical concentrators and mechanical heat engines is only seen in large-scale power plants. Here we demonstrate a promising flat-panel solar thermal to electric power conversion technology based on the Seebeck effect and high thermal concentration, thus enabling wider applications. The developed solar thermoelectric generators (STEGs) achieved a peak efficiency of 4.6% under AM1.5G (1 kW m−2) conditions. The efficiency is 7–8 times higher than the previously reported best value for a flat-panel STEG, and is enabled by the use of high-performance nanostructured thermoelectric materials and spectrally-selective solar absorbers in an innovative design that exploits high thermal concentration in an evacuated environment.
Jac Londe

Mini-bots cooperate to map out building interiors | Crave - CNET - 0 views

  • Mini-bots
  • map out building interiors
  • The rolling droids are being developed by Georgia Institute of Technology, the University of Pennsylvania, and the California Institute of Technology/Jet Propulsion Laboratory (JPL). Equipped with two cameras and laser scanners, they can autonomously explore hallways in an unfamiliar building, detecting doors and windows, and create a map for users such as soldiers or firefighters. The project is part of the Micro Autonomous Systems and Technology (MAST) program and is being sponsored by the Army Research Laboratory. The program is aimed at developing palm-size machines that can hover in place, enter buildings, and perform other insect-like stunts while gathering data and relaying it to human controllers.
Jac Londe

STAGEPAS300 - Systèmes de sonorisation portatifs - Yamaha - France - 0 views

  • STAGEPAS300
  • Combinant une console de mixage intégrée et des haut-parleurs, il est remarquablement simple à utiliser ; quelques minutes suffisent pour vous installer et commencer à jouer. Le STAGEPAS™ 300 est le compagnon de route idéal, car il vous offre un renforcement de son puissant, fiable et pratique pour une grande variété d'applications. La qualité sonore n'a jamais été aussi mobile, ni aussi facile à obtenir. Optez pour la qualité, la simplicité et la puissance dans vos tournées !
  • Le STAGEPAS™ 300 est un système de sonorisation portable que vous pouvez installer partout et à tout moment pour délivrer un son live de grande qualité. Essentiellement conçu pour les musiciens itinérants, le STAGEPAS™ 300 permet de diffuser un son live ...
Jac Londe

PHP Simple HTML DOM Parser - 0 views

  • A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.
  • // Create DOM from string $html = str_get_html('<div id="hello">Hello</div><div id="world">World</div>'); $html->find('div', 1)->class = 'bar'; $html->find('div[id=hello]', 0)->innertext = 'foo'; echo $html; // Output: <div id="hello">foo</div><div id="world" class="bar">World</div>
Jac Londe

Introduction à PHP - 0 views

  • Qu'est-ce que PHP? PHP est un langage interprété (un langage de script) exécuté du côté serveur (comme les scripts CGI, ASP, ...) et non du côté client (un script écrit en Javascript ou une applet Java s'exécute sur votre ordinateur...). La syntaxe du langage provient de celles du langage C, du Perl et de Java. Ses principaux atouts sont : Une grande communauté de développeurs partageant des centaines de milliers d'exemples de script PHP ; La gratuité et la disponibilité du code source (PHP est distribué sous licence GNU GPL) ; La simplicité d'écriture de scripts ; La possibilité d'inclure le script PHP au sein d'une page HTML (contrairement aux scripts CGi, pour lesquels il faut écrire des lignes de code pour afficher chaque ligne en langage HTML) ; La simplicité d'interfaçage avec des bases de données (de nombreux SGBD sont supportés, mais le plus utilisé avec ce langage est MySQL, un SGBD gratuit disponible sur de nombreuses plateformes : Unix, Linux, Windows, MacOs X, Solaris, etc...) ; L'intégration au sein de nombreux serveurs web (Apache, Microsoft IIS, etc.).
  • Origines de PHP Le langage PHP a été mis au point au début d'automne 1994 par Rasmus Lerdorf. Ce langage de script lui permettait de conserver la trace des utilisateurs venant consulter son CV sur son site, grâce à l'accès à une base de données par l'intermédiaire de requêtes SQL. Ainsi, étant donné que de nombreux internautes lui demandèrent ce programme, Rasmus Lerdorf mit en ligne en 1995 la première version de ce programme qu'il baptisa Personal Sommaire Page Tools, puis Personal Home Page v1.0
Jac Londe

ASUSTeK Computer Inc. - Eee- ASUS Eee Pad Transformer TF101 - 0 views

  • Eee Pad Transformer TF101
  • NVIDIA® Tegra™ 2 1.0GHz dual-core CPU for excellent multitasking & HD video playback Android 3.2 Honeycomb O.S. with Adobe® Flash® 10.2 support*2 Full QWERTY keyboard, touchpad input with Polaris® Office® for mobile productivity 16*1 hours long battery life for all day computing with mobile docking Brilliant IPS panel with ultra-wide 178⁰ viewing angle made from scratch resistant and super tough glass One year of Unlimited ASUS WebStorage, two USB ports, SD and Micro SD card readers for easy sharing & storage expandability. 3D stereo with max bass response with SRS premium sound
Jac Londe

Android DIY kit builds on BeagleBoard platform - News - Linux for Devices - 0 views

  • APK Android app files
  • DIY Android Modular Gadget Platform
  • The DIY Android kit also comes with a custom-tailored bootable Android SD card, with drivers and kernels specially designed to run Android applications on the system
  • ...1 more annotation...
  • The system also comes preloaded with SL4A -- a scripting language that lets programmers write GUIs in Perl, Python, and some other scripting languages, says the company.
Jac Londe

Nikola Tesla Fan Site - 0 views

  • THE WONDER WORLD TO BE CREATED BY ELECTRICITY Manufacturer's Record, September 9, 1915, by Dr. Nikola Tesla
  •  
    the Wonderworld to be Created by Electricity
Jac Londe

Android 2.3 Platform Highlights | Android Developers - 0 views

  • Android 2.3 Platform Highlights

    The Android 2.3 platform introduces many new and exciting features for users and developers. This document provides a glimpse at some of the new features and technologies in Android 2.3.

Jac Londe

gkaindl.com → software → arduino ethernet - 0 views

  • Arduino Ethernet is a collection of libraries I have written to use within the Arduino programming environment in conjunction with the Ethernet shield. While the individual libraries are downloaded within a single archive, they do not depend on each other (unless noted otherwise) and can be used independently. The libraries are published under the GPLv2 (or, at your discretion, any later version). Individual libraries EthernetBonjour | Documentation EthernetDHCP | Documentation EthernetDNS | Documentation Also, by popular demand, I've prepared a very simple demo sketch using DNS, DHCP and Bonjour together. Basically, it gets network configuration data via DHCP, then lets you resolve DNS names via the DNS server received from DHCP, all while announcing its DHCP-assigned IP address via link-local Bonjour — Basically a combination of examples from the individual libraries, which I also recommend to look at, as they contain lots of comments explaining how stuff works.
Jac Londe

Plug computer - Wikipedia, the free encyclopedia - 0 views

  • Plug computer
  • A plug computer is a small form factor server for use in the home or office. Compared to their PC-based counterparts, plug computers are lower cost, consume less power, often do not have a video card, and are intended to be powered up at all times
  • Suitable for running a media server, back-up services, file sharing and remote access functions such devices can be used as a bridge between in home protocols such as Digital Living Network Alliance (DLNA) & Server Message Block (SMB) and cloud based services.
Jac Londe

Arduino Shield List - 0 views

Jac Londe

Markus Kayser - Solar Sinter Project - 0 views

  •  
    In a world increasingly concerned with questions of energy production and raw material shortages, this project explores the potential of desert manufacturing, where energy and material occur in abundance.In this experiment sunlight and sand are used as raw energy and material to produce glass objects using a 3D printing process, that combines natural energy and material with high-tech production technology.
Jac Londe

Arduino Cookbook on Amazon™ - 0 views

  • Socket Communications CompactFlash RFID Reader Card 6E ( RF5400-542 )
  • Product Details Integrated Type II CF card plugs into the Type II CompactFlash slot of Windows Powered Pocket PCs Reads and writes to ICode 1, Tag-It HF and PicoTag proprietary HF tags Reads and writes to the most popular HF ISO 15693 tags, including ICode SLI/SL2, LRI512, my-d and Tag-It HF-I High frequency, 13.56MHz reader/writer Add plug-in RFID capabilities to Pocket PC applications
  • $186.60
  • ...1 more annotation...
  • http://arduino. communicate with your arduino. from your arduino. com/products/10269
« First ‹ Previous 141 - 160 Next › Last »
Showing 20 items per page