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
| <html> | |
| <body> | |
| <form> | |
| <input type="text" id="TextBoxClientID"></input> | |
| </form> | |
| <script language='javascript'> | |
| document.getElementById('TextBoxClientID').focus(); | |
| document.getElementById('TextBoxClientID').select(); | |
| </script> | |
| </body> |
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
| : List Android Devices | |
| adb devices | |
| : Get into Shell | |
| adb shell | |
| : In Shell: List Packages installed | |
| pm list packages -f |
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
| CREATE FUNCTION GetLastActiveDateTime | |
| ( | |
| @lastActiveDate Datetime | |
| ) | |
| RETURNS varchar(30) | |
| AS | |
| BEGIN | |
| DECLARE @LastActivity varchar(100) | |
| SET @LastActivity = ''; | |
| DECLARE @today datetime, @nowLastActiveDate datetime |
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
| /* | |
| This script is made by @JosueBasurto | [#JoshB] | |
| I'm not responsible for any use of this script. | |
| This script is given as is. | |
| You can use it, modify it and change it for any purpose. | |
| */ | |
| //Hides controls that are not useful for screenshots | |
| ["player_stats","header","game_stats","geotools","comm","bottom_right_stack","portal_filter_header","footer","butterbar"].forEach( | |
| function(e){ |
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
| var fecha = portal_capture_details.textContent.split(' ')[1] | |
| var dt = new Date(fecha.substring(8,12),fecha.substring(0,2)-1,fecha.substring(4,6)) | |
| Math.round(Math.abs(((new Date()).getTime() - dt.getTime())/(oneDay))); |
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
| DECLARE @Search varchar(255) | |
| SET @Search='Email_Create' --Text to search | |
| SELECT DISTINCT 'SP_HELPTEXT ' as [SP_HELPTEXT], | |
| o.name AS Object_Name,o.type_desc | |
| FROM sys.sql_modules m | |
| INNER JOIN sys.objects o ON m.object_id=o.object_id | |
| WHERE m.definition Like '%'+@Search+'%' | |
| ORDER BY 2,1 |
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
| android | |
| com.alcatel.alcatelonetouch | |
| com.android.backupconfirm | |
| com.android.bluetooth | |
| com.android.browser | |
| com.android.browser.provider | |
| com.android.calculator2 | |
| com.android.calendar | |
| com.android.certinstaller | |
| com.android.chrome |
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | |
| <link href="../inc/css/holiday.css" rel="stylesheet" type="text/css" /> | |
| <title>Holiday Inn® eHost™ | Terms & Conditions</title> | |
| <!-- BEGIN EHOST REDIRECT SNIPPET --> |
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
| # Built application files | |
| *.apk *.ap_ | |
| # Files for the ART/Dalvik VM | |
| *.dex | |
| # Java class files | |
| *.class | |
| # Generated files |
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
| { | |
| "always_prompt_for_file_reload": true, | |
| "always_show_minimap_viewport": true, | |
| "animation_enabled": true, | |
| "atomic_save": false, | |
| "auto_close_tags": true, | |
| "auto_complete": true, | |
| "auto_complete_commit_on_tab": false, | |
| "auto_complete_cycle": false, | |
| "auto_complete_delay": 50, |