This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT 'sp_helptext ' + name | |
| FROM sysobjects o | |
| INNER JOIN syscomments c ON (o.id = c.id) | |
| WHERE | |
| TEXT LIKE '%reemplazar_el_nombre%' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo gedit /etc/php5/cgi/php.ini |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # instalando php y pear para usarn en terminal | |
| $ sudo apt-get install php5-cli php-pear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo gedit /etc/hosts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo cherokee-admin -u |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo add-apt-repository ppa:cherokee-webserver/ppa | |
| $ sudo apt-get update && sudo apt-get install cherokee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- http://stackoverflow.com/questions/653714/how-to-select-into-temp-table-from-stored-procedure | |
| declare @temp table | |
| ( | |
| name varchar(255), | |
| field varchar(255), | |
| filename varchar(255), | |
| filegroup varchar(255), | |
| size varchar(255), | |
| maxsize varchar(255), | |
| growth varchar(255), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo add-apt-repository ppa:jd-team/jdownloader | |
| sudo apt-get update && sudo apt-get install jdownloader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://www.codeproject.com/KB/webforms/SelChkboxesDataGridView.aspx | |
| for (int i = 0; i < GridView1.Rows.Count; i++) | |
| { | |
| GridViewRow row = GridView1.Rows[i]; | |
| bool isChecked = ((CheckBox) row.FindControl("chkSelect")).Checked; | |
| if (isChecked) | |
| { | |
| // Column 2 is the name column |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://www.meiocodigo.com/projects/meiomask/ | |
| // alterando la configuracion de meio mask para | |
| // usar () espacio y - en las cajas de texto | |
| $.mask.options = { | |
| attr: 'alt', // an attr to look for the mask name or the mask itself | |
| mask: null, // the mask to be used on the input | |
| type: 'fixed', // the mask of this mask | |
| maxLength: -1, // the maxLength of the mask | |
| defaultValue: '', // the default value for this input |