Note: movies watched are specified using a 'x' character, series in progress/unfinished have a '*' character.
x 100 Girls
x 101 Dalmatians
- 12 Years a Slave
x 127 Hours
x 1408
x 17 Again
| **Hacking your body** | |
| - 3 points: who am I? who are you? how can I show you who I am? | |
| - 3 things you should never think, these are knowledge/progress killer: "but that's not me", "that's not true" and "I already know this" | |
| - accept your strengths, then improve your weaknesses | |
| - pre-typing questions to know how you process information to reveal more about yourself: | |
| - how do you energize? by spending time alone -> introvert (I) | |
| - how do you take in information? I'm alone in my bedroom at night, eating in front of the computer, taking notes while watching a video about self-development -> sensor (S) | |
| - how do you evaluate things? I rationalize things, I process more in my brain first -> thinker (T) | |
| - how do you view time? I'm always late -> spontaneous perceiver (P) |
| x Flow: The Psychology of Optimal Experience (Mihály Csíkszentmihályi) | |
| Meditation: | |
| x The Mind Illuminated: A Complete Meditation Guide Integrating Buddhist Wisdom and Brain Science (Culadasa, John Yates, Matthew Immergut, Jeremy Graves) | |
| x Wherever You Go, There You Are: Mindfulness Meditation in Everyday Life (Jon Kabat-Zinn) | |
| - You Are Here: Discovering the Magic of the Present Moment (Thích Nhất Hạnh) | |
| Self-help: |
| Note: bands I completely listened to are specified using a 'x' character. | |
| x #TocoParaVos | |
| x +44 | |
| x 10cc | |
| - 2Pac | |
| x 3 Doors Down | |
| x 888 | |
| - A.R. Rahman | |
| x A Beacon School |
Note: movies watched are specified using a 'x' character, series in progress/unfinished have a '*' character.
x 100 Girls
x 101 Dalmatians
- 12 Years a Slave
x 127 Hours
x 1408
x 17 Again
Note: mods are specified using a '-' character.
Amnesia mods backlog:
| strcmp(myString._Mypair._Myval2._Bx._Buf, "test") == 0 |
| #define _IN_FILE "in.txt" | |
| #define _OUT_FILE "out.txt" | |
| #include <fstream> | |
| #include <string> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <windows.h> | |
| using namespace std; |
| using namespace std; | |
| string replaceAll(string str, const string &from, const string &to) | |
| { | |
| size_t start_pos = 0; | |
| while ((start_pos = str.find(from, start_pos)) != string::npos) | |
| { | |
| str.replace(start_pos, from.length(), to); | |
| start_pos += to.length(); // Handles case where 'to' is a substring of 'from' | |
| } |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| char * toBinary(int n) | |
| { | |
| const int size = sizeof(n) * 8; | |
| char * str = (char*)malloc(sizeof(char) * (size + 1)); | |
| if (str) | |
| { |