Python script to crack hashes using online services
http://code.google.com/p/findmyhash/
Minggu, 25 Desember 2011
findmyhash
Sabtu, 24 Desember 2011
Percona Testing: Innodb crash / recovery tests available
Percona Toolkit PDF manual now available
Introduction To Designing For Windows Phone 7 And Metro
Percona Server 5.5.18-23.0: Now with Group Commit!
PERCONA SERVER DOCUMENTATION
How to Build a Responsive Frankenstein Framework With LESS
Minggu, 18 Desember 2011
List.js
Do you want a 7 KB cross-browser native JavaScript that makes your
plain HTML lists super flexible, searchable, sortable and filterable? Yeah!
Do you also want the possibility to add, edit and remove items by dead simple templating?
Hell yeah!
http://listjs.com/
9 reasons you must install Sublime Text 2. Code like a man, man.
Sabtu, 17 Desember 2011
SOLID JavaScript: The Single Responsibility Principle
http://freshbrewedcode.com/derekgreer/2011/12/08/solid-javascript-single-responsibility-principle/
(Read More..)Fluid grids, orientation & resolution independence
Minggu, 11 Desember 2011
The difference between width:auto and width:100%
Sabtu, 10 Desember 2011
Kamis, 08 Desember 2011
Selasa, 06 Desember 2011
Inferno
Inferno
DISCLAIMER: This is a big WIP. I'm also very tired so this is probably extremely incoherent.None of the current PHP unit testing frameworks work for me; I want to include a library into my application and be able to run a file at the command line and see my test results. I don't want to install PEAR packages. I don't want to include about a hundred files. I don't want to have to open up the browser.
Inferno is a really quick, lightweight and simple to use PHP unit testing solution. It's based on the xUnit testing pattern and it's designed for testing small classes, libraries and other bits of code. It's not meant for massive codebases, rather, it's meant as a nice, coherent way of testing a standalone library or a group of small files.
https://github.com/jamierumbelow/inferno
(Read More..)
Klout Library for CodeIgniter -- https://github.com/patrickpopowicz/Klout-Library-for-CodeIgniter
Sisyphus.js -- Gmail-like client-side drafts and bit more
Imagine you're filling a complex form on site, or typing effervescent and extensive
comment. And when you're almost done with that browser is crashed, or you closed tab
mistakenly, or electricity is turned off, or something else break your efforts.
Disgusting, huh?
With Sisyphus on site you just reopen page in your modern (with HTML5 support) browser
and see all your changes at that forms. It's lightweight (3.5 KB) jQuery plugin uses Local
Storage to prevent your work being lost. And Sisyphus is easy to use and needs you just to
select forms to protect:
Minggu, 04 Desember 2011
Cooking PHPUnit (and a chef-solo example on top)
High Quality Stamp & Post Mark Photoshop Brushes
ARGF
ARGF is a stream designed for use in
scripts that process files given as command-line arguments or passed in via
STDIN.
The arguments passed to your script are stored in the ARGV Array, one argument per element. ARGF assumes that any arguments that aren’t
filenames have been removed from ARGV. For example:
$ ruby argf.rb --verbose file1 file2 ARGV #=> ["--verbose", "file1", "file2"] option = ARGV.shift #=> "--verbose" ARGV #=> ["file1", "file2"]
http://www.ruby-doc.org/core-1.9.3/ARGF.html(Read More..)
Using HAProxy for MySQL failovers
Sabtu, 03 Desember 2011
common_schema, rev. 178: foreach(), repeat_exec(), Roland Bouman, query analysis
ZEOSDB STORED PROC
Mohon izinnx pak Budi, posting stored procedure dengan zeos?
pak Budi : silahkan aja....<tanya' jawab sendiri>
<mohon ma'af sebelumnx...>
buat stored procedure di mysqlnx:
DELIMITER $$
USE `pos`$$
DROP PROCEDURE IF EXISTS `pesan`$$
CREATE DEFINER=`pos`@`%` PROCEDURE `pesan`(OUT msg VARCHAR(25))
BEGIN
SELECT "TEST" INTO msg;
END$$
DELIMITER ;
panggil di zeos dengan zquery:
procedure TForm1.btn1Click(Sender: TObject);
begin
with Qquery do
begin
Close;
SQL.Clear;
SQL.Text:='call pesan(@msg);';
ExecSQL;
SQL.Text:='select @msg;';
Open;
etext.Text:=Qquery.Fields[0].A
end;
end;