My colleague in a company offsite mentioned Vidoop which lets you
have password that cannot be stolen via key loggers and someone
looking over your head. Apparently, you select your password as
photo categories (e.g. animal,person, boat). Then when you login
you are shown random photos and with random letters associated
with them. Your task is to type in the letter that's shown on
photos within your chosen photo categories. So on one login, your
password may be "ABP", and second time you may have to type
"BAG." What makes me not put trust in them is their revenue
sharing programs with the websites that implement this
technology.
BTW, does anyone know if they use MySQL?
Thanks to MySQL community members we’ve got really great collection of media files from the recent mysqluc. Thanks to Seeri for all that work he’s done to collect everything in one place so we could watch/listen/read information from this great event.
So, if you did not attended mysqluc07, then you definitely should visit Technocation page, dedicated to this conference.
P.S. I’m going to post links to these videos and descriptions for the sessions on the Best Tech Videos soon, so If you are not sure to watch some video or not, just wait while I’m merging these links with information from mysqluc site.
Immediately after my presentation about my MySQL S3 storage
engine, I was interviewed by Eric Lai, a reporter from
ComputerWorld. The resulting article is here, and was abstracted by the conference
here.
Also, Sheeri
Kritzer recorded me. Here is the audio and the video.
When I get the larger form of the video, I'll push it into an S3
bucket/item and make it world readable...
When MySQL first came out and started popping up all over the web in the e-commerce arena, if you were like me you looked at it as a wannabe. 'Call me in a few years when you grow up'. Yea, sometimes the Oracle in us goes to our heads a little to fast...MySQL has really gone mainstream in the last few years. Companies that never would have considered MySQL in the past for critical database
Welcome to the 46th edition of Log Buffer, the weekly review of database blogs. PGCon 2007 has been happening just a few blocks from where I sit, and judging by what the bloggers have to say, organizer Dan Langille has done a great job putting together a very full conference. Let’s start with some blogs [...]
Inserting user-defined DTrace probes into MySQL source code is very useful to help user identify the performance problems in the application level and the database server, In addition, the cost of the USDT probe is basically neglectable. Each probes inserted into the src can be enabled by adding the code like:
If (PROVIDER_PROBE_ENABLED()
{
PROVIDER_PROBE(arg0,…);
}
The steps to add DTrace probes into MySQL is very straightforward.
Step 1: Figure out what probes are needed to insert into the source code
This is the difficult part that requires you understand the MySQL implementation details. Generally, it is good to insert probes to clarify the DB response time distribution …
[Read more]
Inserting user-defined DTrace probes into MySQL source code is very useful to help user identify the performance problems in the application level and the database server, In addition, the cost of the USDT probe is basically neglectable. Each probes inserted into the src can be enabled by adding the code like:
If (PROVIDER_PROBE_ENABLED()
{
PROVIDER_PROBE(arg0,…);
}
The steps to add DTrace probes into MySQL is very straightforward.
Step 1: Figure out what probes are needed to insert into the source code
This is the difficult part that requires you understand the MySQL implementation details. Generally, it is good to insert probes to clarify the DB response time distribution …
[Read more]
The hot tub is still having an issue. I suspect that there is an
air
bubble past the primary pump. Nothing seems to be working to get
the
air bubble out. Either the pump is having issues, aka is clogged,
or
priming is not working. The reason I suspect that it is priming
is
because during the priming stage nothing is happening.
What I want is for the tub to work.
What would I like long term? Find a way to raise the temperature
from
104 to 108. The tub has some sort of safety feature built in so
that
this can not happen. I've studied the board that controls the
hot
tub, and except for one jumper, I've been able to document them
all
(and I suspect the one jumper is just for turning the ozone
creator
on and off). To learn more I turned to google :)
Surprisingly little is out there on hot to hack your hot tub.
No
conversations on any …
This is a review of Webyog's MONyog MySQL monitoring tool. The product is still in beta and has some rough edges, but holds promise. Its design includes some interesting architectural decisions I think will help distinguish it from MySQL's own Monitoring and Advisory Service.
With MySQL 5.0 the database provides trigger functionality on INSERT, REPLACE, UPDATE and DELETE.
Those of you who know some other RDBMS know, that there are also some system events where one would like to have triggers.
Unfortunately MySQL does not (yet) provide such functionality. This is sad because as database administrator this would be sometimes very helpful.
But you can build your own LOGON and STARTUP trigger.
MySQL provides some hooks for these events...
Complete Story (PDF 160 kbyte).