Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
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
I have just discovered a great feature of composer: | |
composer update --lock | |
It saves a lot of time when you merge branches with composer.lock file changes in both branches. | |
Just resolve conflict by applying --ours version of the file (or --theirs, it really doesn't matter) and then run | |
`composer update --lock `. | |
Composer will do all the dirty work for you and update composer.lock file according to composer.json changes | |
and install new packages. The rest of packages in composer are not changed. |
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
With .htaccess just need to add these flags: | |
php_value session.cookie_httponly 1 | |
php_value session.cookie_secure 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
-- Sarathstra, Scourge of the North @CRAFTED V1 EDITION | |
SET @ROKHAN=26859; | |
SET @SARATHSTRA=26858; | |
SET @GOSSIP=9434; | |
-- Creature Text | |
DELETE FROM `creature_text` WHERE `CreatureID`=@ROKHAN; | |
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES | |
(@ROKHAN, 0, 0, "Don't ya worry, mon. Just leave it to Rokhan. She be comin'.", 12, 0, 100, 1, 0, 0, 26047, 0, 'Rokhan to Player'); |
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
ID | |
618 | |
1701 | |
1846 | |
5063 | |
5067 | |
5068 | |
5143 | |
5146 | |
5892 |
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
A Reminder that this feature can find the Oldest YouTube videos ever. | |
Discussion | |
Want to find the oldest ever YouTube videos? | |
Type "whatever you're looking for before:year(or date)" in the search field and have fun. | |
Examples: | |
Oldest videos about birds "birds before:2005" |
- Open cmd (run as administrator), then use
dism /online /set-edition:serverstandard /productkey:TVRH6-WHNXV-R9WG3-9XRFY-MY832 /accepteula
-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
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
[opcache] | |
; Determines if Zend OPCache is enabled | |
opcache.enable=1 | |
; Determines if Zend OPCache is enabled for the CLI version of PHP | |
;opcache.enable_cli=1 | |
; The OPcache shared memory storage size. | |
opcache.memory_consumption=512 |
NewerOlder