eEcho blog

is een halte van de gedachte

Archive for the ‘Links’ Category

opta.nl spam

http://www.opta.nl/asp/registraties/
OPTA (Onafhankelijke Post en Telecommunicatie Autoriteit) houdt onafhankelijk toezicht op de naleving van de wet- en regelgeving op het gebied van post en elektronische communicatiediensten. Deze wet- en regelgeving is erop gericht concurrentie op deze markten te bevorderen. Hierdoor ontstaan meer keuzemogelijkheden en eerlijke prijzen voor consumenten.
http://www.opta.nl/asp/aanbieders/
Op de markten voor telecommunicatie en post zijn tal […]

JavaScript and CSS checkboxes

http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/
This JavaScript and CSS will allow you to use custom images for checkboxes, radio buttons and select lists.
Checkboxes, Radio Buttons, Select Lists, Custom HTML Form Elements
Have you ever wanted to use your own images for checkboxes, radio buttons or select lists? This script will let you do that. Easily. The unobtrusive script gracefully degrades, so […]

browsershots

http://browsershots.org/ browsershots

PHP’s Built-in Session Library or PHP framework

PHP framework
Luckily, PHP 4.0 has basic session management built in. While
it’s very easy and straightforward to use and may suffice for your needs, it lacks some
of the advanced features that the PHP framework provides. Because the PHP framework also provides
modules for user authentication, permission management, and a database abstraction
layer, it’s still a very important […]

Audacity

A fast, cross-platform audio editor
Audacity is a multi-track audio editor for Linux/Unix, MacOS and
Windows. It is designed for easy recording, playing and editing of
digital audio. Audacity features digital effects and spectrum
analysis tools. Editing is very fast and provides unlimited
undo/redo.
Supported file formats include Ogg Vorbis, MP3, WAV, AIFF, and AU.
For more information, see […]

CORBA Links

http://www.omg.org/technology/documents/idl2x_spec_catalog.htm
Corba language mapping specs., including Corba.
http://omniorb.sourceforge.net/docs.html
omniORB 4.1.x omniORB user’s guide . omni thread abstraction omniNames omniORB utilities omniidl for back-end authors
http://www.gnome.org/projects/ORBit2/python/dynamic_idl.html Dynamic IDL Compiling
Python is a dynamic language, so why not take advantage of it? O-P doesn’t use stubs or skeletons like most other ORBs, but instead compiles IDL files at run-time. This means […]

Links JavaScript

http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256C85006A6604
Format Time, Format Date, Round to 0 or .5, Days Between Dates, Repeat String, Printer Friendly Pages, Fill In Blank Table Cells, Is Valid Time, Custom No Documents, Found Message, Selecting check box highlights entire row, Time Zones, Order Of Execution, Number Of Weekdays Between Dates, JavaScript Sorting, parseInt Bug, isArray Function, Move […]

Python links

http://code.google.com/p/sympy/
Currently, SymPy core has around 6300 lines of code (including extensive comments and docstrings) and its capabilities include:
* basic arithmetics *,/,+,-,**
* basic simplification (like a*b*b + 2*b*a*b -> 3*a*b^2)
* expansion (like (a+b)^2 -> a^2 + 2*a*b + b^2)
* functions […]

mysql links

http://dev.mysql.com/doc/refman/5.0/en/charset-syntax.html Specifying Character Sets and Collations 9.1.3.1. Server Character Set and Collation
9.1.3.2. Database Character Set and Collation
9.1.3.3. Table Character Set and Collation
9.1.3.4. Column Character Set and Collation
9.1.3.5. Character String Literal Character Set and Collation
9.1.3.6. National Character Set
9.1.3.7. Examples of Character Set and Collation Assignment
9.1.3.8. Compatibility with Other DBMSs

GROUP BY Optimization Mysql DISTINCT

http://dev.mysql.com/doc/refman/5.0/en/group-by-optimization.html
The most general way to satisfy a GROUP BY clause is to scan the whole table and create a new temporary table where all rows from each group are consecutive, and then use this temporary table to discover groups and apply aggregate functions (if any). In some cases, MySQL is able to do much […]

rsync

http://samba.anu.edu.au/rsync/documentation.html
# An html version of the rsync man page.
# An html version of the rsyncd.conf man page.
# The FAQ (frequently asked questions list).
# A nice tutorial on setting up ssh to avoid password prompts also covers how you can restrict the commands allowed and setup a cron job to run rsync.
# Karsten Thygesen has […]

django-admin Utility

http://www.djangobook.com/en/1.0/appendixG/ - django-admin.py is Django’s command-line utility for administrative tasks. This appendix explains its many powers.
You’ll usually access django-admin.py through a project’s manage.py wrapper. manage.py is automatically created in each Django project and is a thin wrapper around django-admin.py. It takes care of two things for you before delegating to django-admin.py

Settings Django

http://www.djangobook.com/en/1.0/appendixE/ - Your Django settings file contains all the configuration of your Django installation. This appendix explains how settings work and which settings are available.

Template Tags and Filters

http://www.djangobook.com/en/1.0/appendixF/ - The best reference to all the available tags and filters is directly in your admin interface. Django’s admin interface includes a complete reference of all tags and filters available for a given site. To see it, go to your admin interface and click the Documentation link at the upper right of the page.
http://docs.djangoproject.com/en/dev/topics/templates/#topics-templates […]

Django Form

http://docs.djangoproject.com/en/dev/ - Widget, Field, Form, Form Media, Form objects

View Reference Django

http://www.djangobook.com/en/1.0/appendixD/ - Most of these views take a large number of arguments that can change the generic view’s behavior. Many of these arguments work the same across a large number of views. Table D-1 describes each of these common arguments; anytime you see one of these arguments in a generic view’s argument list, it will […]

Model Database Referentie Django

Deze pagina legt links naar elke bron die informatie bevat over django model .
Merk op dat, hoewel deze API’s worden beschouwd als zeer stabiel, de Django ontwikkelaars consequent toevoegen van nieuwe sneltoetsen en de van het model definitie hebben gemaakt. Het is een goed idee om altijd de nieuwste documentatie online in
http://docs.djangoproject.com/en/dev/topics/db/#topics-db-index - […]

squid-cache

http://www.squid-cache.org/
Squid: Optimising Web Delivery
Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages. Squid has extensive access controls and makes a great server accelerator. It runs on Unix and Windows and is licensed under the GNU GPL.
Making […]

CherryPy

http://www.cherrypy.org/
* Your CherryPy powered web applications are in fact stand-alone Python applications embedding their own multi-threaded web server. You can deploy them anywhere you can run Python applications. Apache is not required, but it’s possible to run a CherryPy application behind it (or IIS). CherryPy applications run on Windows, Linux, Mac […]

nexans

http://www.nexans.be/eservice/Navigate.nx?navigationRef=-10&CZ=Belgium
Global expert in cables and cabling systems
The diversity and future development of the world of cable demand a company with GLOBAL EXPERTISE, a strong LOCAL PRESENCE and TECHNICAL LEADERSHIP.The sheer magnitude and variety of cables used today require a cable manufacturer with vision and extensive production and service capability.
Nexans offers: GLOBAL EXPERTISE founded on experience, […]

 

Home | info@eecho.info | Voorwaarden | Blog