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
| **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) |
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
| 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: |
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
| 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 |
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
| Note: movies watched are specified using a 'x' character, series in progress/unfinished have a '*' character. | |
| Movies: | |
| x 100 Girls | |
| x 101 Dalmatians (https://www.imdb.com/title/tt0115433) | |
| x 127 Hours | |
| x 1408 | |
| x 17 Again | |
| x 1917 |
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
| Note: mods are specified using a '-' character. 100% means all achievements unlocked. | |
| Games finished (always on the hardest difficulty unless specified): | |
| - 35MM | |
| - 8Bit Killer | |
| - A Date in the Park (100%) | |
| - A Way Out | |
| - Aerinde | |
| - Afterfall InSanity |
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
| Note: mods are specified using a '-' character. | |
| Amnesia mods backlog: | |
| - Amnesia: The Dark Descent - Emma's Nightmare | |
| - Amnesia: The Dark Descent - Emma's Story | |
| - Amnesia: The Dark Descent - Final Revelations | |
| - Amnesia: The Dark Descent - Harmony | |
| - Amnesia: The Dark Descent - Inn Of The Shadows | |
| - Amnesia: The Dark Descent - La Caza |
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
| strcmp(myString._Mypair._Myval2._Bx._Buf, "test") == 0 |
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 _IN_FILE "in.txt" | |
| #define _OUT_FILE "out.txt" | |
| #include <fstream> | |
| #include <string> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <windows.h> | |
| using namespace std; |
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
| 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' | |
| } |
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
| #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) | |
| { |
NewerOlder