| 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
    
  
  
    
  | /* | |
| The main difference between const let and var is the hoisting and initializing of them on runtime | |
| while const and let will be added to temporal dead zone, the var will be available no matter where you are initializing him | |
| */ | |
| timeLet = 'time-let'; | |
| let timeLet = 'time-let-init'; | |
| console.log(timeLet); // Error | |
| timeConst = 'time-const'; | 
  
    
      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
    
  
  
    
  | // String utils | |
| // | |
| // resources: | |
| // -- mout, https://github.com/mout/mout/tree/master/src/string | |
| /** | |
| * "Safer" String.toLowerCase() | |
| */ | |
| function lowerCase(str) { | |
| return str.toLowerCase(); | 
  
    
      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
    
  
  
    
  | <?php | |
| /* | |
| Plugin Name: R Debug | |
| Description: Set of dump helpers for debug. | |
| Author: Andrey "Rarst" Savchenko | |
| Author URI: http://www.rarst.net/ | |
| License: MIT | |
| */ | |
| /** | 
  
    
      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
    
  
  
    
  | // Define the JSON Schema | |
| const customerSchema = { | |
| "required": ["id"], | |
| "properties": { | |
| "id": { | |
| "type": "integer", | |
| "minimum": 100, | |
| "maximum": 1000 | |
| }, | |
| "name": { |