Thursday, August 22, 2013
SSL Certificates and IIS7
Resources:
[1] http://www.digicert.com/csr-creation-microsoft-iis-7.htm
[2] http://support.godaddy.com/help/article/5343/instrucciones-para-generacion-de-solicitud-para-firma-de-certificado-csr?locale=es
[3] https://www.globalsign.com/support/install/install_iis7.php
[4] http://weblogs.asp.net/scottgu/archive/2007/04/06/tip-trick-enabling-ssl-on-iis7-using-self-signed-certificates.aspx
[3] Comparison http://en.wikipedia.org/wiki/Comparison_of_SSL_certificates_for_web_servers
[4] 90 days free http://www.instantssl.com/ssl-certificate-products/free-ssl-certificate.html
[5] http://www.godaddy.com/ssl/ssl-certificates.aspx?isc=sshl5la05&ci=8979
Wednesday, August 21, 2013
Flip Book Maker
Free Alternatives
[1] http://www.boxoft.com/flip-book-maker (Windows/Max)
[2] * http://www.flippdf.com/free-page-flip-book-maker/
Private Alternatives
[1] http://www.flipsnack.com (Online)
[2] kvisoft flipbook maker pro
Labels:
Entertainment,
Off topic,
Software
Thursday, July 25, 2013
Host File Browser
Some times you need explore your files in your host server, here you have tools for that.
References:
[1] http://www.vonloesch.de/filebrowser.html
[2] Download http://www.4shared.com/zip/B2XFPfrI/jspbrowser.html
References:
[1] http://www.vonloesch.de/filebrowser.html
[2] Download http://www.4shared.com/zip/B2XFPfrI/jspbrowser.html
Tuesday, July 23, 2013
CRM Companies
Below we have referenced the top online CRM companies providing services today.
References:
[1] http://crm-software-review.toptenreviews.com/
[2] http://www.thetoptens.com/best-online-crm-companies/
Tuesday, July 09, 2013
jQuery MultiSelect work using jQuery 1.9.1 and jQuery-ui-1.10.3
Version 1.13 - 08/19/2012 ============================================== - Fixed: jQuery 1.8 compatibility
We using multiselect, that work fine using jquery 1.8-ui, but we need migrate jquery to jQuery 1.9.1 and jQuery-ui-1.10.3.
for that we changed source jquery.multiselect.filter.js (line 29)
instance = (this.instance=$(this.element).data("echMultiselect")),/*fix for jquery 1.10.3*/ /*multiselect")),*/
References:
[1] http://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/
jQuery Addons
jQuery Contdown
http://keith-wood.name/countdown.html
Tree View con jQuery
http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
Tooltip
[1] http://patelshailesh.com/index.php/css-tooltip-on-mouse-hover
[2] http://www.queness.com/resources/html/tooltip/jquery-tooltip-queness.html
[3] http://www.filamentgroup.com/examples/fg-tooltip/
http://keith-wood.name/countdown.html
Tree View con jQuery
http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
Tooltip
[1] http://patelshailesh.com/index.php/css-tooltip-on-mouse-hover
[2] http://www.queness.com/resources/html/tooltip/jquery-tooltip-queness.html
[3] http://www.filamentgroup.com/examples/fg-tooltip/
Wednesday, June 19, 2013
C# Windows Services and Logs
References:
[1] http://www.codeproject.com/Articles/14353/Creating-a-Basic-Windows-Service-in-C
[1.1] http://www.codeproject.com/Articles/3990/Simple-Windows-Service-Sample
[2] http://blog.themobilebrand.com/technology/tutorial-building-a-windows-service-application/
[3] http://www.c-sharpcorner.com/UploadFile/mahesh/window_service11262005045007AM/window_service.aspx
[4] C# log4net http://www.eyecatch.no/blog/2012/08/logging-with-log4net-in-c-sharp/
[5] C# log4net http://www.codeproject.com/Questions/377372/Log4net-not-working-No-Logs-created
[6] Windows event log http://msdn.microsoft.com/en-us/library/6s7642se.aspx
Monday, June 17, 2013
Audio Streaming
References
[1] Shoutcast DSP + Winamp http://howto.slserver.com/?cat=10
[2] GStreamer http://gstreamer.freedesktop.org/features/
[3] Share speaker player http://www.extendoffice.com/product/share-speaker-player.html
[1] Shoutcast DSP + Winamp http://howto.slserver.com/?cat=10
[2] GStreamer http://gstreamer.freedesktop.org/features/
[3] Share speaker player http://www.extendoffice.com/product/share-speaker-player.html
Wednesday, June 12, 2013
C# Send/Read SMS using MT6225(Chine) Cellular
Code works over Windows XP/Sp2 + VS2008, problem is on Windows 7/x64
First you need download/install driver for Windows 7 from [1], after that download c# sample from [2].
for understand code, you need know At commands, that code only send AT command to Comx for interchange information with the cellular phone.
Same usually commands:
AT
(if result is OK, then connection is good)
AT+CMGF=1
(Set message format 0:New/1:Read)
AT+CMGF?
(Read current setting)
AT+CMGF=?
(Show list possible values)
AT+CMGL="ALL"
(List of all messages)
Classic sequence:
AT+CMGF=1
AT+CMGL="ALL"
References:
[1] MT6225 for W7/x64 Driver http://hotfile.com/dl/42358552/cb0f022/MTK6227_Driver__For_XP__Vista.rar
[2] C# Source Code for test http://www.elguille.info/colabora/NET2006/mauro_melgar_envio_sms.htm
[3] AT Commands http://www.telit.com/module/infopool/download.php?id=542
First you need download/install driver for Windows 7 from [1], after that download c# sample from [2].
for understand code, you need know At commands, that code only send AT command to Comx for interchange information with the cellular phone.
Same usually commands:
AT
(if result is OK, then connection is good)
AT+CMGF=1
(Set message format 0:New/1:Read)
AT+CMGF?
(Read current setting)
AT+CMGF=?
(Show list possible values)
AT+CMGL="ALL"
(List of all messages)
Classic sequence:
AT+CMGF=1
AT+CMGL="ALL"
References:
[1] MT6225 for W7/x64 Driver http://hotfile.com/dl/42358552/cb0f022/MTK6227_Driver__For_XP__Vista.rar
[2] C# Source Code for test http://www.elguille.info/colabora/NET2006/mauro_melgar_envio_sms.htm
[3] AT Commands http://www.telit.com/module/infopool/download.php?id=542
Friday, June 07, 2013
Crear Instalador / Make installer tools
Resources:
[1] NSIS http://nsis.sourceforge.net/Main_Page
[2] WiX http://sourceforge.net/projects/wix/
[3] Advanced Installer http://www.advancedinstaller.com/
[4] Inno Setup http://www.jrsoftware.org/isinfo.php
[5] http://www.createinstall.com/cifree/
Report Viewer/Crystal Report Resources
Resources:
[1] Crystal Reports Redistributable 64 bit http://cdm.codeplex.com/releases/view/99744
[2] Crystal Reports for VS2008 http://cdm.codeplex.com/downloads/get/141449
[3] Crystal Components searcher https://websmp130.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/bobj_download/main.htm
[4] http://geeks.ms/blogs/fernandezja/archive/2007/08/19/setup-project-insertar-crystal-report-merge-module.aspx
[5] Microsoft Report Viewer 2012 Runtime http://www.4shared.com/rar/eO4YZbTM/Microsoft_Report_Viewer_2012_R.html
[6] http://geeks.ms/blogs/fernandezja/archive/2007/08/19/setup-project-insertar-crystal-report-merge-module.aspx
Thursday, June 06, 2013
Resolve/Prevent Reflected XSS All Clients on (ASP.NET MVC)
Resources
[1] http://www.slideshare.net/denimgroup/xss-remediation
[2] https://www.owasp.org/index.php/Reviewing_Code_for_Cross-site_scripting
[3] Event 1046 - Cross-Site Scripting Filter http://msdn.microsoft.com/en-us/library/dd565647%28v=vs.85%29.aspx
[4] http://weblogs.asp.net/scottgu/archive/2010/04/06/new-lt-gt-syntax-for-html-encoding-output-in-asp-net-4-and-asp-net-mvc-2.aspx
[5] http://msdn.microsoft.com/en-us/magazine/hh708755.aspx
[6] Microsoft Web Protection Library http://wpl.codeplex.com/
Tuesday, June 04, 2013
Sunday, June 02, 2013
Proveedores de hosting econĆ³micos
Recursos:
[1] http://www.microeb.net/hosting.php
[2] http://www.aqphost.com/general/hosting/planes-hosting-linux.html
[3] Dominio 10.95 €+Hosting Gratis (10Mb) https://www.cdmon.com/cas/dominios/
[4] Top webpages http://www.alexa.com/
[5] Enlazar un dominio y blogspot.com http://tirandodeblog.blogspot.com/2009/10/usar-un-dominio-propio-en-blogger.html
Friday, May 31, 2013
Wednesday, May 29, 2013
Extend USB with UTP (20mts) Solved!
White Orange & Orange <=> Red
White Green <=> White
Green <=> Green
Rest <=> Black.
References:
[1] http://www.instructables.com/id/How-to-Extend-yout-USB-using-UTP/step2/The-making-of-Part-1/
[2] http://tutallerdebricolaje.com/como-hacer-un-alargador-o-extensor-usb/
[3] http://forums.hardwarezone.com.sg/mass-order-corner-251/mo-power-over-ethernet-poe-convertor-turn-any-ip-camera-into-poe-device-3826552.html
Linux::Network configuration::CentOS
1) Configure by console interfaces
system-config-network
system-config-securitylevel-tui
/etc/init.d/network restart
/etc/init.d/NetworkManager restart
service network restart
2) Working by scripts
2.1) Static
vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
BROADCAST=192.168.1.255
HWADDR=00:11:22:33:44:55
IPADDR=192.168.1.x
NETMASK= 255.255.255.0
NETWORK= 192.168.1.0
ONBOOT=yes
GATEWAY= 192.168.1.y
TYPE=Ethernet
2.2) DHCP
DEVICE=eth0
BOOTPROTO=dhcp
ONBOOT=yes
vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=www.kusaconsultores.com
GATEWAY=192.168.1.1
vi /etc/resolv.conf
nameserver 200.48.225.130
nameserver 200.48.225.146
/etc/init.d/network restart
References:
[1]http://rm-rf.es/como-configurar-tarjetas-de-red-en-red-hat-enterprise-centos-y-fedora-core/
[2]route
http://systemadmin.es/2009/04/anadir-rutas-route-add-en-centos
system-config-network
system-config-securitylevel-tui
/etc/init.d/network restart
/etc/init.d/NetworkManager restart
service network restart
2) Working by scripts
2.1) Static
vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
BROADCAST=192.168.1.255
HWADDR=00:11:22:33:44:55
IPADDR=192.168.1.x
NETMASK= 255.255.255.0
NETWORK= 192.168.1.0
ONBOOT=yes
GATEWAY= 192.168.1.y
TYPE=Ethernet
2.2) DHCP
DEVICE=eth0
BOOTPROTO=dhcp
ONBOOT=yes
vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=www.kusaconsultores.com
GATEWAY=192.168.1.1
vi /etc/resolv.conf
nameserver 200.48.225.130
nameserver 200.48.225.146
/etc/init.d/network restart
References:
[1]http://rm-rf.es/como-configurar-tarjetas-de-red-en-red-hat-enterprise-centos-y-fedora-core/
[2]route
http://systemadmin.es/2009/04/anadir-rutas-route-add-en-centos
Thursday, May 23, 2013
Trying Mount W7 Image (Ghost) over VMWare
Problem:
I need start Virtual Machine with W7, so i don't have DVD Installer, but i have W7 image (created with Norton Ghost).
I Think make one iso file with W7 image for mount that, next mount ghost boot tool for restore from W7 iso file, but ghost not read files from iso mounted.
One alternative is mount USB as Hard Disk, but now my usb have only 4Gb (image file is ~ 7Gb )
I Think too mount iso image over virtual drive using winmount http://www.winmount.com/winmount-free.html
VMware vCenter Converter StandAlone (tool for convert your physical computer to virtual machine)
thinking more, then i choice one solution very very crazy.
I try shrink my physical partition for add one aditional partition using Computer Management, Disk Managment (10Gb), then attach that new partition on VMWare Disk and try restore image with Ghost.
So, Microsoft Windows Server 2008 R2 – Media is write protected. For resolve that you need execute next commands.
cmd
diskpart
list disk
select disk N
attributes disk clear readonly
* Too i try put .gho file into .iso for mount then restore, for that i need use iso editor, por example poweriso:
http://www.poweriso.com/download.htm (v5.6)
Name: TEAM CRUDE
Key : MIT68-I7WLE-CAGZN-DJYPR-PVNE4
* Alternatives
http://www.magiciso.com/download.htm
http://www.minidvdsoft.com/isocreator/
* Ghost32 ( For Convert .gho to .vmdk )
>ghost64 -clone,mode=restore,src=AmdW7-100.GHO,dst=toW7-100.vmdk -batch -sure
[1] http://www.mediafire.com/download/s2xp8f734b5a5xa/Ghost32_ghost64_11.5.1_Symantec.rar
[2] Convert .gho to .vmdk using ghost32 http://www.gregoryaubry.com/virtualisation-2/converting-image-file-format-from-gho-to-vmdk-and-from-vmdk-to-gho-symantec-connect/
*Plop BootManager (force boot from USB on VMware) http://www.plop.at/en/bootmanager/download.html
* System Repair Disk (ISO) http://www.windowsreinstall.com/winre/createfromiso/#Downloads
* http://www.filecrop.com (for search resources)
I need start Virtual Machine with W7, so i don't have DVD Installer, but i have W7 image (created with Norton Ghost).
I Think make one iso file with W7 image for mount that, next mount ghost boot tool for restore from W7 iso file, but ghost not read files from iso mounted.
One alternative is mount USB as Hard Disk, but now my usb have only 4Gb (image file is ~ 7Gb )
I Think too mount iso image over virtual drive using winmount http://www.winmount.com/winmount-free.html
VMware vCenter Converter StandAlone (tool for convert your physical computer to virtual machine)
thinking more, then i choice one solution very very crazy.
I try shrink my physical partition for add one aditional partition using Computer Management, Disk Managment (10Gb), then attach that new partition on VMWare Disk and try restore image with Ghost.
So, Microsoft Windows Server 2008 R2 – Media is write protected. For resolve that you need execute next commands.
cmd
diskpart
list disk
select disk N
attributes disk clear readonly
* Too i try put .gho file into .iso for mount then restore, for that i need use iso editor, por example poweriso:
http://www.poweriso.com/download.htm (v5.6)
Name: TEAM CRUDE
Key : MIT68-I7WLE-CAGZN-DJYPR-PVNE4
* Alternatives
http://www.magiciso.com/download.htm
http://www.minidvdsoft.com/isocreator/
* Ghost32 ( For Convert .gho to .vmdk )
>ghost64 -clone,mode=restore,src=AmdW7-100.GHO,dst=toW7-100.vmdk -batch -sure
[1] http://www.mediafire.com/download/s2xp8f734b5a5xa/Ghost32_ghost64_11.5.1_Symantec.rar
[2] Convert .gho to .vmdk using ghost32 http://www.gregoryaubry.com/virtualisation-2/converting-image-file-format-from-gho-to-vmdk-and-from-vmdk-to-gho-symantec-connect/
*Plop BootManager (force boot from USB on VMware) http://www.plop.at/en/bootmanager/download.html
* System Repair Disk (ISO) http://www.windowsreinstall.com/winre/createfromiso/#Downloads
* http://www.filecrop.com (for search resources)
Wednesday, May 22, 2013
Sql Server 2008 Mirroring Tips
Problem:
*, **, ***
Solution:
Common Error Messages:
1) The server network address TCP:// can not be reached or does not exist. Check the network address name and that the ports for the local and remote endpoints are operational.
References:
[1]Mirroring vs Replication and Others http://nilebride.wordpress.com/2011/07/24/log-shipping-vs-mirroring-vs-replication/
[2] Introduction http://www.guillesql.es/Articulos/database_Mirroring_SQL_Server_2005_2008.aspx
[3] High Recomended http://www.mssqltips.com/sqlservertip/1705/implementing-database-mirroring-in-sql-server-2005-across-domains/
[4] Resume http://blog.capside.com/2012/04/10/como-configurar-db-mirroring-utilizando-certificados-sql-server-2008-r2-db-mirroring-untrusted-servers-using-certificates/
[5] Mirroring 2008 using GUI http://www.databasejournal.com/features/mssql/article.php/3828341/Database-Mirroring-in-SQL-Server-2008.htm
[6] * http://blog.sqlauthority.com/2010/01/11/the-server-network-address-tcpsqlserver5023-can-not-be-reached-or-does-not-exist-check-the-network-address-name-and-that-the-ports-for-the-local-and-remote-endpoints-are-operational-microso/
[7] ** http://www.gknzcfc.net/subsite/server-tcp-provider-failed-to-listen-on-1433-tcp-port-is-already-in-use.html
[8] *** https://www.simple-talk.com/sql/database-administration/sql-server-endpoints-soup-to-nuts/
[9] SQL Server Data Encryption http://selfhandle.com/post/2011/08/05/How-to-enableremove-Transparent-Data-Encryption-%28TDE%29.aspx
*, **, ***
Solution:
Common Error Messages:
1) The server network address TCP:// can not be reached or does not exist. Check the network address name and that the ports for the local and remote endpoints are operational.
References:
[1]Mirroring vs Replication and Others http://nilebride.wordpress.com/2011/07/24/log-shipping-vs-mirroring-vs-replication/
[2] Introduction http://www.guillesql.es/Articulos/database_Mirroring_SQL_Server_2005_2008.aspx
[3] High Recomended http://www.mssqltips.com/sqlservertip/1705/implementing-database-mirroring-in-sql-server-2005-across-domains/
[4] Resume http://blog.capside.com/2012/04/10/como-configurar-db-mirroring-utilizando-certificados-sql-server-2008-r2-db-mirroring-untrusted-servers-using-certificates/
[5] Mirroring 2008 using GUI http://www.databasejournal.com/features/mssql/article.php/3828341/Database-Mirroring-in-SQL-Server-2008.htm
[6] * http://blog.sqlauthority.com/2010/01/11/the-server-network-address-tcpsqlserver5023-can-not-be-reached-or-does-not-exist-check-the-network-address-name-and-that-the-ports-for-the-local-and-remote-endpoints-are-operational-microso/
[7] ** http://www.gknzcfc.net/subsite/server-tcp-provider-failed-to-listen-on-1433-tcp-port-is-already-in-use.html
[8] *** https://www.simple-talk.com/sql/database-administration/sql-server-endpoints-soup-to-nuts/
[9] SQL Server Data Encryption http://selfhandle.com/post/2011/08/05/How-to-enableremove-Transparent-Data-Encryption-%28TDE%29.aspx
Subscribe to:
Posts (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglĆ©s se llama “A potentially dangerous Request.Form value was detected from the client”. varias pĆ”ginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Facturador Sunat SEE SFS (Linux)
/usr/lib/jvm/java-8-openjdk-amd64/bin/java -jar ./facturadorApp-2.1.jar server prod.yaml References: [1] Make temp certificate for test...