souvenir
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 66 / 84
jsFiddle http://jsfiddle.net
13/07/2011 cluster icon
  • EtherPad : Etherpad is an Open Source online editor providing collaborative editing in really real-time powered by Node.js
  • google-mobwrite : MobWrite converts forms and web applications into collaborative environments. Create a simple single-user system, add one line of JavaScript, and inst...
  • Ink : Ink provides the same component-based UI building experience that React offers in the browser, but for command-line apps. It uses Yoga to build Flexbo...
  • Flume : A React-powered node editor and runtime engine. Build apps that are resilient to changing requirements by modeling your business logic as a JSON graph...
  • Bootstrap : Build responsive, mobile-first projects on the web with the world's most popular front-end component library. Bootstrap is an open source toolkit for ...

Online code editor and playground.

javascript editor css online
domsnitch https://code.google.com/p/domsnitch
23/06/2011 cluster icon
  • Bliss.js : Want to use Vanilla JS but find native APIs a bit unwieldy? Bliss is for you
  • Prototype : Easy Ajax and DOM manipulation for dynamic web applications
  • XSS Filter Evasion Cheat Sheet - OWASP : This article is focused on providing application security testing professionals with a guide to assist in Cross Site Scripting testing.
  • yepnope.js : A Conditional Loader For Your Polyfills!
  • Zepto.js : Zepto is a minimalist JavaScript library for modern browsers with a largely jQuery-compatible API. If you use jQuery, you already know how to use Zept...

A passive reconnaissance tool inside the DOM (experimental)

security javascript dom test
xui.js http://xuijs.com
21/06/2011 cluster icon
  • The HTML5 Shiv : The HTML5 Shiv enables use of HTML5 sectioning elements in legacy Internet Explorer and provides basic HTML5 styling for Internet Explorer 6-9, Safari...
  • RequireJS : RequireJS is a JavaScript file and module loader. It is optimized for in-browser use, but it can be used in other JavaScript environments, like Rhino ...
  • polyfill : polyfill makes web development less frustrating by selectively polyfilling just what the browser needs. Use it on your own site, or as a service.
  • HTML5Forms.js : HTML5Forms.js is a JavaScript polyfill that implements a subset of the HTML5 Forms module in all browsers. The script will only add support for the d...
  • css3-mediaqueries-js : make CSS3 Media Queries work in all browsers (JavaScript library)

A super micro tiny DOM library for authoring HTML5 mobile web applications.

mobile javascript library
jsmad https://github.com/nddrylliog/jsmad
20/06/2011 cluster icon
  • jsmad : jsmad is a pure javascript MP3 decoder, based on libmad, with an ID3 decoder written from scratch.
  • Gibberish : Fast, JavaScript DSP library that creates JIT optimized audio callbacks using code generation techniques. It is designed to be a fast audio API for br...
  • meSpeak.js : meSpeak.js (modulary enhanced speak.js) is a 100% client-side JavaScript text-to-speech library
  • Plyr : A simple, accessible HTML5 media player
  • Band.js : An interface for the Web Audio API that supports rhythms, multiple instruments, repeating sections, and complex time signatures.
thumbnail

Javascript MPEG-1 Audio Layer III (mp3) and ID3v2 decoder

javascript mp3 audio
Wapiti http://wapiti.sourceforge.net
18/06/2011 cluster icon
  • Nikto2 : Nikto is an Open Source (GPL) web server scanner which performs comprehensive tests against web servers for multiple items, including over 6500 potent...
  • webhint : webhint is a linting tool that will help you with your site's accessibility, speed, security and more, by checking your code for best practices and co...
  • WebScarab : WebScarab is a framework for analysing applications that communicate using the HTTP and HTTPS protocols.
  • OpenVAS : OpenVAS is a full-featured vulnerability scanner. Its capabilities include unauthenticated testing, authenticated testing, various high level and low ...
  • Burp Suite : Burp Suite is an integrated platform for performing security testing of web applications. Its various tools work seamlessly together to support the en...

Wapiti allows you to audit the security of your web applications.

It performs "black-box" scans, i.e. it does not study the source code of the application but will scans the webpages of the deployed webapp, looking for scripts and forms where it can inject data.

Once it gets this list, Wapiti acts like a fuzzer, injecting payloads to see if a script is vulnerable.

web security software test scan
Nikto2 http://www.cirt.net/nikto2
18/06/2011 cluster icon
  • Wapiti : Wapiti allows you to audit the security of your web applications. It performs "black-box" scans, i.e. it does not study the source code of the applica...
  • Burp Suite : Burp Suite is an integrated platform for performing security testing of web applications. Its various tools work seamlessly together to support the en...
  • WebScarab : WebScarab is a framework for analysing applications that communicate using the HTTP and HTTPS protocols.
  • Skipfish : Skipfish is an active web application security reconnaissance tool. It prepares an interactive sitemap for the targeted site by carrying out a recursi...
  • webhint : webhint is a linting tool that will help you with your site's accessibility, speed, security and more, by checking your code for best practices and co...

Nikto is an Open Source (GPL) web server scanner which performs comprehensive tests against web servers for multiple items, including over 6500 potentially dangerous files/CGIs, checks for outdated versions of over 1250 servers, and version specific problems on over 270 servers. It also checks for server configuration items such as the presence of multiple index files, HTTP server options, and will attempt to identify installed web servers and software. Scan items and plugins are frequently updated and can be automatically updated.

web security software test
CSS Lint http://csslint.net
17/06/2011 cluster icon
  • stylelint : A mighty, modern CSS linter that helps you enforce consistent conventions and avoid errors in your stylesheets.
  • ruff : An extremely fast Python linter and code formatter, written in Rust.
  • Phan : Phan is a static analyzer that looks for common issues and will verify type compatibility on various operations when type information is available or ...
  • JSHint : A JavaScript Code Quality Tool. JSHint is a tool that helps to detect errors and potential problems in your JavaScript code.
  • YAML Builder : A tool for visual layout development of YAML based CSS layouts

CSS Lint points out problems with your CSS code. It does basic syntax checking as well as applying a set of rules to the code that look for problematic patterns or signs of inefficiency. The rules are all pluggable, so you can easily write your own or omit ones you don't want.

lint css quality tool
Classical Inheritance in JavaScript http://www.crockford.com/javascript/inheritance.html
16/06/2011 cluster icon
  • idiomatic.js : Principles of Writing Consistent, Idiomatic JavaScript
  • JavascriptOO : Every javascript project you should be looking into. With examples, categories, install commands, CDN links, project and author stats, and more.
  • Byte saving techniques : This is a collection of JavaScript wizardry that can shave bytes off of your code.
  • Vanilla List : The Vanilla Javascript Repository. A searchable repository of dependency-free JavaScript libraries. Over 100 projects and growing.
  • enable cross-origin resource sharing : Cross-Origin Resource Sharing (CORS) is a specification that enables truly open access across domain-boundaries. If you serve public content, please c...

JavaScript is a class-free, object-oriented language, and as such, it uses prototypal inheritance instead of classical inheritance. This can be puzzling to programmers trained in conventional object-oriented languages like C++ and Java. JavaScript's prototypal inheritance has more expressive power than classical inheritance, as we will see presently.

javascript reference
miniProxy https://github.com/joshdick/miniProxy
10/06/2011 cluster icon
  • amphp : Amp is a non-blocking concurrency framework for PHP providing primitives to manage concurrency such as an event loop, promises, and asynchronous itera...
  • Clean Code PHP : Software engineering principles, from Robert C. Martin's book Clean Code, adapted for PHP. This is not a style guide. It's a guide to producing readab...
  • Symfony : Symfony is a set of reusable PHP components and a PHP framework for web projects.
  • Dwoo : a PHP Template Engine
  • HTML2PDF : HTML2PDF is a HTML to PDF converter written in PHP. It allows the conversion of valid HTML 4.01 in PDF format, and is distributed under OSL.
thumbnail

miniProxy is a simple web proxy written in PHP that can allow you to bypass Internet content filters, or to browse the internet anonymously. miniProxy is licensed under the GNU GPL v3. miniProxy is the successor to pageForward.

php proxy
iCalendar Validator http://severinghaus.org/projects/icv
06/06/2011 cluster icon
  • openDAW : openDAW is a next-generation web-based Digital Audio Workstation (DAW) designed to democratize music production and to resurface the process of making...
  • JSCrush : JavaScript crusher, code minification
  • Issuu : Digital Publishing Platform
  • ideone.com : Ideone is an online compiler and debugging tool which allows youto compile source code and execute it online in more than 60 programming languages.
  • Maqetta : Maqetta is an open source project that provides WYSIWYG visual authoring of HTML5 user interfaces. The Maqetta application itself is authored in HTML,...

Online validator for iCal files

ical validator online
Email-Blueprints https://github.com/mailchimp/Email-Blueprints
23/05/2011 cluster icon
  • HTML EMAIL BOILERPLATE : This website and its sample code creates a template of sorts, absent of design or layout, that will help you avoid some of the major rendering problem...
  • Email Standards Project : The Email Standards Project is about working with email client developers and the design community to improve web standards support and accessibility ...
  • HTML email templates : Easily create beautiful, branded email marketing campaigns. Start by choosing one of our free HTML email templates and customize it in minutes.
  • Shards : A free and modern UI toolkit for web makers based on the popular Bootstrap 4 framework.
  • Responsive Web Design Patterns : A collection of patterns and modules for responsive designs.
thumbnail

Email Blueprints is a collection of HTML email templates that can serve as a solid foundation and starting point for the design of emails.

html design email css template
HTML EMAIL BOILERPLATE http://htmlemailboilerplate.com
23/05/2011 cluster icon
  • Email-Blueprints : Email Blueprints is a collection of HTML email templates that can serve as a solid foundation and starting point for the design of emails.
  • Shards : A free and modern UI toolkit for web makers based on the popular Bootstrap 4 framework.
  • Can I email… : Support tables for HTML and CSS in emails.
  • Ink : A Responsive Email Framework from ZURB. Quickly create responsive HTML emails that work on any device & client. Even Outlook.
  • Email Standards Project : The Email Standards Project is about working with email client developers and the design community to improve web standards support and accessibility ...
thumbnail

This website and its sample code creates a template of sorts, absent of design or layout, that will help you avoid some of the major rendering problems with the most common email clients out there — Gmail, Outlook, Yahoo Mail, etc. While not plug and play (you know, you'll have to do some work ;-), it will provide some helpful examples and snippets that will keep your email design rendering as true-to-form as possible.

html email css template
Silex http://silex.sensiolabs.org/
22/05/2011 cluster icon
  • Codeception : Codeception PHP Testing Framework is designed to work just out of the box. This means its installation requires minimal steps and no external dependen...
  • Humbug : Humbug is a Mutation Testing framework for PHP to measure the real effectiveness of your test suites and assist in their improvement. It eats Code Cov...
  • Fat-Free Framework : A powerful yet easy-to-use PHP micro-framework designed to help you build dynamic and robust Web applications - fast!
  • Elgg : Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to cr...
  • xCSS : xCSS bases on CSS and empowers a straightforward and object-oriented workflow when developing complex style cascades.

The PHP micro-framework based on Symfony2 Components

framework php
Feed43 http://feed43.com
29/04/2011 cluster icon
  • YAML Builder : A tool for visual layout development of YAML based CSS layouts
  • metaflop : Metaflop is an easy to use web application for modulating your own fonts. Metaflop uses Metafont, which allows you to easily customize a font within t...
  • Page2RSS : Page2RSS is a service that helps you monitor web sites that do not publish feeds. It will check any web page for updates and deliver them to your favo...
  • Feedity : Feedity is an online data extraction tool and RSS feed builder
  • ColoRotate : Color palette generation tool

Your favorite site doesn't provide news feeds?
This free online service converts any web page to an RSS feed on the fly.

tool rss generator online
Maqetta http://maqetta.org
22/04/2011 cluster icon
  • draw.io : Online diagram/mockups design.
  • Codassium : A better way to conduct remote interviews WebRTC based video chat + code editor = Awesome interviews
  • MyDraft : Free wireframing online tool
  • EtherPad : Etherpad is an Open Source online editor providing collaborative editing in really real-time powered by Node.js
  • jsFiddle : Online code editor and playground.

Maqetta is an open source project that provides WYSIWYG visual authoring of HTML5 user interfaces. The Maqetta application itself is authored in HTML, and therefore runs in the browser without requiring additional plugins or downloads.

wireframe editor online
320 and up http://stuffandnonsense.co.uk/projects/320andup
18/04/2011 cluster icon
  • HTML5 Boilerplate : HTML5 Boilerplate helps you build fast, robust, and adaptable web apps or sites. Kick-start your project with the combined knowledge and effort of 100...
  • HTML5 Cross Browser Polyfills : So here we're collecting all the shims, fallbacks, and polyfills in order to implant html5 functionality in browsers that don't natively support them.
  • Onsen : Open source HTML5 hybrid app framework for PhoneGap & Cordova Mobile-optimized HTML5, CSS and JavaScript with Web components Responsive layout, Materi...
  • AOS : Animate On Scroll Library. Small library to animate elements on your page as you scroll.
  • When can I use... : Compatibility tables for support of HTML5, CSS3, SVG and more in desktop and mobile browsers.
thumbnail

‘320 and Up’ is a lightweight, easy to use and content first responsive web design boilerplate.

css3 mobile html5 css
Fat-Free Framework http://fatfree.sourceforge.net
13/04/2011 cluster icon
  • Roll : Roll is a pico framework with performances and aesthetic in mind.
  • Symfony : Symfony is a set of reusable PHP components and a PHP framework for web projects.
  • Humbug : Humbug is a Mutation Testing framework for PHP to measure the real effectiveness of your test suites and assist in their improvement. It eats Code Cov...
  • xCSS : xCSS bases on CSS and empowers a straightforward and object-oriented workflow when developing complex style cascades.
  • Elgg : Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to cr...
thumbnail

A powerful yet easy-to-use PHP micro-framework designed to help you build dynamic and robust Web applications - fast!

framework php microframework
store.js https://github.com/marcuswestin/store.js
07/04/2011 cluster icon
  • localForage : localForage is a handy library that improves the offline experience of your web app by using asynchronous storage (via IndexedDB or WebSQL where avail...
  • Wave.js : Audio visualizer library for javascript. Create dynamic animations that react to an audio file or audio stream.
  • Bespoke.js : Bespoke.js is a super minimal, modular presentation library for modern browsers, designed to foster a rich plugin ecosystem.
  • React : A JavaScript library for building user interfaces
  • Zero Clipboard : The Zero Clipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie, and a JavaScript interface. The "Z...
thumbnail

localStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userData behavior under the hood.

javascript storage library
Respond https://github.com/scottjehl/Respond
16/03/2011 cluster icon
  • darken : Easy control over your dark mode in a web environment
  • jQuery Masonry : A dynamic layout plugin for jQuery The flip-side of CSS floats
  • voxel.css : The goal of this project is to provide a lightweight 3D CSS library with very simple implementation.
  • polyfill : polyfill makes web development less frustrating by selectively polyfilling just what the browser needs. Use it on your own site, or as a service.
  • Anime.js : Anime.js is a fast, multipurpose and lightweight JavaScript animation library with a simple, yet powerful API. It works with CSS properties, SVG, DOM ...
thumbnail

Activates media queries in IE6-8

polyfill javascript css library
* { CSS:resetr } https://perishablepress.com/cssresetr/
15/03/2011 cluster icon
  • Galen Framework : Automated testing of look and feel for your responsive websites. Layout testing seemed always a complex task. Galen Framework offers a simple solution...
  • hurl.it : Hurl.it makes HTTP requests. Choose the request method, customize headers and POST parameters, add basic authorization or OAuth credentials, and even ...
  • 📦 Parcel : Blazing fast, zero configuration web application bundler
  • CSS Sprite Generator : This tool allows you to automate the process of generating CSS sprites. Simply give it a ZIP file containing 2 or more images (GIF, PNG or JPG) and it...
  • tota11y : an accessibility visualization toolkit that aims to reduce the friction of a11y testing

To help you find the perfect CSS-reset styles, CSSresetr lets you try all the best CSS Resets on a variety of web pages – even your own.

reset css test tool
page 66 / 84
1664 links
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn