Skip to content

Instantly share code, notes, and snippets.

View kenorb's full-sized avatar
💭
The Consciousness Has Shifted...The Awakening Has Begun

Rafal W. kenorb

💭
The Consciousness Has Shifted...The Awakening Has Begun
View GitHub Profile
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
@kenorb
kenorb / build_env.sh.log
Created April 24, 2014 11:10
Log from installing github.com/mycognitive/booking_timeslots_example_site
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
@kenorb
kenorb / trans-life memory complex
Created July 7, 2014 09:44
Is there evidence that brain and mind are separate?
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".
@kenorb
kenorb / Hidden Health Benefits Of Eating Peels
Created July 8, 2014 09:47
Food scraps can be packed with nutrients as well as a surprising amount of flavor. Here are six trimmings you should start saving.
Orange Peel
The peel contains more than four times as much fiber as the fruit inside, and more tangeretin and nobiletin -- flavonoids with anticancer, antidiabetic and anti-inflammatory properties. A 2004 study on animals suggests that these nutrients may even reduce harmful LDL cholesterol better than some prescription drugs.
How to eat it: Grate and sprinkle zest on green beans or asparagus. For dessert, simmer strips in simple syrup and cover in melted dark chocolate.
--
Swiss Chard Stems
A study by the Institute of Food Technology in Germany revealed that Swiss chard stems are loaded with glutamine, an amino acid that boosts the immune system and bolsters the body's ability to recover from injuries and surgery.
@kenorb
kenorb / models-of-consciousnesses
Last active August 29, 2015 14:03
What are current neuronal explanations and models of 'consciousness'?
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]**
@kenorb
kenorb / OverriddenMethod.java
Last active August 29, 2015 14:04
Overridden Method Demo in Java.
/*
* 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() {
@kenorb
kenorb / ConstructorDemo.java
Last active August 29, 2015 14:04
Constructor Demo in Java.
/*
* 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;
@kenorb
kenorb / ControlFlow.java
Last active August 29, 2015 14:04
ControlFlow Demo in Java.
/*
* 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).
@kenorb
kenorb / Super.java
Last active August 29, 2015 14:04
Super Demo in Java.
/*
* Super Demo.
*
* super() is used to access members of superclass.
*/
class A {
int x = 1000;
void display() {
@kenorb
kenorb / FinalDemo.java
Last active August 29, 2015 14:04
Final Keyword Demo in Java.
/*
* 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;