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
const Person = { | |
name: "Shoaib", | |
address: "Banani, Dhaka", | |
email: "[email protected]" | |
}; | |
function paintPerson(person) { | |
person.name = "Mehedi"; | |
} |
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
public class Booking { | |
String uniqueId; | |
User guest; | |
User host; | |
Date bookingTime; | |
Date confirmationTime; | |
Date cancellationTime; | |
Status status; //PENDING, CONFIRMED, CANCELLED_BY_GUEST, CANCELLED_BY_HOST | |
User lastUpdatedBy; | |
} |
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
'eicon-editor-link' => 'eicon-editor-link', | |
'eicon-editor-unlink' => 'eicon-editor-unlink', | |
'eicon-editor-external-link' => 'eicon-editor-external-link', | |
'eicon-editor-close' => 'eicon-editor-close', | |
'eicon-editor-list-ol' => 'eicon-editor-list-ol', | |
'eicon-editor-list-ul' => 'eicon-editor-list-ul', | |
'eicon-editor-bold' => 'eicon-editor-bold', | |
'eicon-editor-italic' => 'eicon-editor-italic', | |
'eicon-editor-underline' => 'eicon-editor-underline', | |
'eicon-editor-paragraph' => 'eicon-editor-paragraph', |
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
//Elementor Function Code | |
class ElementorCustomElement | |
{ | |
private static $instance = null; | |
public static function get_instance() | |
{ | |
if (!self::$instance) | |
self::$instance = new self; | |
return self::$instance; | |
} |
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
## | |
# User Database | |
# | |
# Note that this file is consulted directly only when the system is running | |
# in single-user mode. At other times this information is provided by | |
# Open Directory. | |
# | |
# See the opendirectoryd(8) man page for additional information about | |
# Open Directory. | |
## |
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
#!/bin/bash | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |