Saturday, March 28, 2026

Start privoxy with Windows 11 boot

Hello Readers, Here again, Im gonna to share the problem and the solution about privoxy program. Privoxy is and ad blocker and it must be started correctly in order to have internet if not it seems that you wont have. It is because it is set in the settings windows in proxy side
It doesnt have been started automatically because of an error looking for a config.txt or privoxy.log when started or tried trough command line with and without administrator. The solution is to create a scheduler, you can look for details in internet, I'll just add what I did trying and error until it works.
There are the values for each field in screen 3 in image above.
Program/Script:
"C:\Program Files (x86)\Privoxy\privoxy.exe"
Add arguments ... :
configfile "C:\Program Files (x86)\Privoxy\config.txt"
Start in:
C:\Program Files (x86)\Privoxy
Hope it helps out there.

Wednesday, February 11, 2015

Repair Kingston USB

Hello Everybody

I'd like to share with you the steps performed in order to repair my USB that appears to be reset as 0 GB of capacity which don't allow to see its content.

First check this link for the errors I reported in a forum.

After post that thread in the forum, I still searched for a solution and I find this page which show more clues to understand the issue.

That was how I find this comment on this video which provide me the name application that will help him so I decided to test it.


 So the option "Restore" made the job and repair my usb

Thursday, December 25, 2014

Windows 7 installation in Paviliom dm1

1. I was trying to install win7 on my laptop, but an error was fired that said the a partition can't be created (no se puede crear una particion). So reading this link I change the boot order to first boot from my unique hard drive and to start the installer at the time the laptop start up I press scape> F9> boot from USB CD/DVD Drive and finally was able to install win7.

I've leave a photo of the installation process on my laptop

Monday, December 01, 2014

Windows Commands (CMD)


1. > or >>
How to redirect the output of command into  a file, this guy say how
just use > or >> following by the file name.

2. Find
This guy show us how to find information inside a text block comming from a file or a command output, useful to find data.

3. CVS win
- Where deleting files are stored, this guy said that they goes inside the attic folder.
- This guy said us how to find files inside CVS repository, but as Im using it is in the HEAD, I don't know how to specify the branch yet. This example is to find all the files in the repository in my case i put name module instead of point.
 cvs rlog -Nh .
 cvs rlog -Nh module_name

4.

Thursday, May 10, 2012

SQL Count

Check this query


DECLARE @table TABLE (ID INT,VALUE INT)
INSERT INTO @table
        ( ID, VALUE )
VALUES  ( 1, -- ID - int
          1  -- VALUE - int
          )
          
INSERT INTO @table
        ( ID, VALUE )
VALUES  ( 1, -- ID - int
          2  -- VALUE - int
          )
          
INSERT INTO @table
        ( ID, VALUE )
VALUES  ( 1, -- ID - int
          0  -- VALUE - int
          )       
          
          SELECT id,SUM(VALUE) 'Sum',COUNT(VALUE) 'Count',COUNT(CASE value WHEN 0 THEN NULL ELSE value end) 'Count_NoNull_NoZero',AVG(VALUE)*1.0 'AVG',SUM(VALUE)*1.0/COUNT(CASE value WHEN 0 THEN NULL ELSE value end)*1.0 'AVG_NoNull_Nozero' FROM @table AS t
          GROUP BY id             




Sunday, October 02, 2011

Varios

Realizando un formulario chico, me he apoyado en los siguientes recursos:

ObjectContext.CommandTimeout = 0
Poner el timeout a infinito de una clase del Entity Framework de .net 4.0
http://stackoverflow.com/questions/4396833/sql-exception-with-net-4-ef

Para llamar un SP con el entity framework
http://channel9.msdn.com/Blogs/wriju/Using-Stored-Procedure-in-ADONET-Entity-Framework-40

Para poner transparentes los fondos de los iconos
http://www.portablefreeware.com/?sc=111

Para convertir imagenes a .ico
http://www.convertico.com/

Buen Tutorial de backgroundWorker
http://www.dotnetperls.com/backgroundworker

Para guardar un archivo de texto a una ruta elegida por el usuario
http://www.withvb.net/tutorials/browse-open-and-save-dialogs

;)

Wednesday, June 15, 2011

Terminologia ...