View AnimationIndices.txt
This file contains 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
0000 | |
0001 AIRPORT THRW_BARL_THRW | |
0002 ATTRACTORS STEPSIT_IN | |
0003 ATTRACTORS STEPSIT_LOOP | |
0004 ATTRACTORS STEPSIT_OUT | |
0005 BAR BARCUSTOM_GET | |
0006 BAR BARCUSTOM_LOOP | |
0007 BAR BARCUSTOM_ORDER | |
0008 BAR BARMAN_IDLE | |
0009 BAR BARSERVE_BOTTLE |
View mp.methods
This file contains 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
Provided by rage-mp.de | |
mp.version: | |
-->mp.version.core | |
-->mp.version.net | |
mp._events: | |
-->mp._events.add | |
-->mp._events.call | |
-->mp._events.callRemote |
View NotNullToDefault.sql
This file contains 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 CONCAT_WS('.',TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME) col,CONCAT('alter table ',TABLE_NAME,' MODIFY COLUMN ', COLUMN_NAME,' ',DATA_TYPE,'(',CHARACTER_MAXIMUM_LENGTH,') NULL DEFAULT NULL') as script_col | |
FROM information_schema.COLUMNS | |
WHERE is_nullable=0 | |
and length(COLUMN_DEFAULT) is NULL and | |
CHARACTER_MAXIMUM_LENGTH is not NULL and | |
table_schema = 'dbName' | |
Union | |
SELECT CONCAT_WS('.',TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME) col,CONCAT('alter table ',TABLE_NAME,' MODIFY COLUMN ', COLUMN_NAME,' ',DATA_TYPE,' NULL DEFAULT NULL') as script_col | |
FROM information_schema.COLUMNS | |
WHERE is_nullable=0 |
View VideoStream.php
This file contains 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
<?php | |
/** | |
* Description of VideoStream | |
* | |
* @author Rana | |
* @link http://codesamplez.com/programming/php-html5-video-streaming-tutorial | |
*/ | |
class VideoStream | |
{ | |
private $path = ""; |