short answer: tdsskiller You've tried Malwarebytes, and your antivirus and it says you're clean, but it's obvious you're not, as every time you try to use windows update or try to go to a Microsoft site, you get redirected to another search engine.
http://support.kaspersky.com/faq/?qid=208283363
Wednesday, March 30, 2011
Friday, February 18, 2011
OpenOffice Base MySQL ALTER table structure
I may have missed it, but it's likely that you will have trouble refreshing table structure in OpenOffice Base if you connect to MySQL and ALTER a table.
Basically, the answer is to add the fields in the Edit of the table(s) in Base to match the new columns. If you don't know what they are, create a new table connecting to the ODBC of MySQL and edit the appropriate table.
It's a real pain, but there you are.
Basically, the answer is to add the fields in the Edit of the table(s) in Base to match the new columns. If you don't know what they are, create a new table connecting to the ODBC of MySQL and edit the appropriate table.
It's a real pain, but there you are.
Tuesday, February 15, 2011
YUI3 accordion
I had the hardest time trying to override the label color in YUI3-accordion.
It turns out that !important was used in the default style, so I had to !important again to overwrite it. (I didn't want/need black on a dark background).
It turns out that !important was used in the default style, so I had to !important again to overwrite it. (I didn't want/need black on a dark background).
Monday, January 31, 2011
Increase the number of entries in Media Library of Wordpress
Have lots of images? Don't want to paginate? Using Faster Image Inserter?
Change from 10 to whatever:
back up wp-admin/includes/media.php
find this:
and this:
and change 10 to 50 or 100 or ...
Change from 10 to whatever:
back up wp-admin/includes/media.php
find this:
$start = ( $_GET['paged'] - 1 ) * 10;
if ( $start < 1 )
$start = 0;
add_filter( 'post_limits', create_function( '$a', "return 'LIMIT $start, 10';" ) )and this:
$page_links = paginate_links( array(
'base' => add_query_arg( 'paged', '%#%' ),
'format' => '',
'prev_text' => __('«'),
'next_text' => __('»'),
'total' => ceil($wp_query->found_posts / 10),
'current' => $_GET['paged']
));
and change 10 to 50 or 100 or ...
Friday, January 21, 2011
MySQL fix some phone numbers
This is long and convoluted, but basically, it takes unknown inputs of phone numbers from a table:
select Concat(if(length(PhoneNumber)< 10, "212", ""), replace(PhoneNumber, "-","")) FROM AddressBook;
update addressbook set PhoneNumber=Concat(if(length(PhoneNumber)< 10, "212", ""), replace(PhoneNumber, "-",""));
5551212
555-1212
212555-1212
212-555-1212
and makes them all
2125551212
select Concat(if(length(PhoneNumber)< 10, "212", ""), replace(PhoneNumber, "-","")) FROM AddressBook;
update addressbook set PhoneNumber=Concat(if(length(PhoneNumber)< 10, "212", ""), replace(PhoneNumber, "-",""));
Wednesday, December 29, 2010
Evernote works well with WINE
Installed Evernote on WINE, and it seems so far to be pretty stable and works well enough to grab my information.
Friday, December 17, 2010
Serial Port access from OpenOffice.org
This is my post in the forum.
http://user.services.openoffice.org/en/forum/viewtopic.php?f=20&t=682#p168678
Labels:
com port,
COM1,
communication,
OpenOffice.org,
RS-232,
serial,
VBA
Subscribe to:
Posts (Atom)