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
| Process: AdobeReader [30772] | |
| Path: /Applications/Adobe Acrobat Reader DC.app/Contents/MacOS/AdobeReader | |
| Identifier: com.adobe.Reader | |
| Version: 15.008.20082 (15.008.20082) | |
| Code Type: X86-64 (Native) | |
| Parent Process: launchd [231] | |
| Responsible: AdobeReader [30772] | |
| User ID: 501 | |
| Date/Time: 2015-08-23 21:11:06.726 +0100 |
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
| Rafals-MacBook-Pro:booking_timeslots_example_site kenorb$ cd scripts/ | |
| Rafals-MacBook-Pro:scripts kenorb$ ./build_env.sh | |
| Initialized Drupal 7.16 root directory at ../trunk [notice] | |
| Executing: mysql --database=booking_example --host=localhost --user=root --password=root -e "SELECT 1;" 2> /dev/null > /dev/null | |
| You are about to DROP all tables in your 'booking_example' database. Do you want to continue? (y/n): y | |
| Sites directory sites/default already exists - proceeding. [notice] | |
| Executing: mysql --database=booking_example --host=localhost --user=root --password=root -e "SELECT 1;" 2> /dev/null > /dev/null | |
| /Applications/MAMP/bin/php/php5.5.3/bin/php -d magic_quotes_gpc |
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
| Conventional neuroscience teaches that consciousness is a by-product which arises out of biochemical and electromagnetic activity in the brain. New research indicates the opposite is true - electromagnetic and biochemical activity in the brain is an incidental by-product which arises out of consciousness. This idea represents a cardinal paradigm shift, and a turning point in the history of neuroscience. | |
| A new breakthrough in memory science has yielded a general theory which supports the numerous observations of evidence for reincarnation. The discovery indicates experience is recorded in non-physical memory waves, which collapse into inert particles that are stored independently of the brain. | |
| Key elements of the discoveries are below. | |
| **Remote Viewing** | |
| According to Wikipedia, [remote viewing (RV)][2] is the practice of seeking impressions about a distant or unseen target using subjective means, in particular, extrasensory perception (ESP) or "sensing with mind". |
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
| Consciousness is currently not completely understood through conventional mathematics - nor by any other mainstream scientific approach, for that matter. | |
| Conventional neuroscience teaches that consciousness is a by-product which arises out of biochemical and electromagnetic activity in the brain. New research indicates the opposite is true - electromagnetic and biochemical activity in the brain is an incidental by-product which arises out of consciousness. This idea represents a cardinal paradigm shift, and a turning point in the history of neuroscience. | |
| ---------- | |
| **Giulio Tononi** | |
| **[An Integrated Theory of the consciousness][2]** |
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
| /* | |
| * OverriddenMethod Demo. | |
| * | |
| * Method overriding. In a class hierarchy when superclass and subclass have a method with the same name and same signature than the method in subclass then is set to be overriden method. | |
| * It is the way of representing polymorphism. | |
| * A superclass reference can refer to its subclass object, but a subclass reference cannot refer to superclass object. | |
| */ | |
| class A { | |
| void display() { |
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
| /* | |
| * Constructor Demo. | |
| * | |
| * - Constructor is syntactically similar to a method, but it lacks of return type. | |
| * - Constructor will have the same name as class name in which is declared. | |
| * - Contructors are invoked immediately after creation of the objects. | |
| * | |
| * There are two types of constructors: | |
| * - default constructor; | |
| * - parameterised constructor; |
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
| /* | |
| * Control Flow Demo. | |
| * | |
| * Constructor call always starts from the top superclass down to subclasses. | |
| */ | |
| class A { | |
| // A(int x) { // It'll generate an error, as there is no default constructor defined. | |
| A() { | |
| // super(); // Invisible call which invoke superclass constructor (Object). |
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
| /* | |
| * Super Demo. | |
| * | |
| * super() is used to access members of superclass. | |
| */ | |
| class A { | |
| int x = 1000; | |
| void display() { |
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
| /* | |
| * Final Keyword Demo. | |
| * | |
| * This demo will generate 3 errors: | |
| * - error: cannot inherit from final A | |
| * - error: display() in B cannot override display() in A | |
| * - error: cannot assign a value to final variable x | |
| * | |
| * Uses of final keyword can be used: | |
| * - to prevent inheritance; |
OlderNewer