Skip to content

Instantly share code, notes, and snippets.

View matronator's full-sized avatar
👀
¯\_(ツ)_/¯

Matronator matronator

👀
¯\_(ツ)_/¯
View GitHub Profile
@matronator
matronator / (×_×).md
Last active April 6, 2021 23:08
(。•́︿•̀。)

I am constantly uncomfortable. People must hate being around me, I bring a dead feeling with me, kill conversations. Like I have nothing to say, nothing to contribute. I'm quieter, fighting to find something to say, but keep coming up empty or mumble some nonsense. This happens nearly all the time now. With my family, friends, co-workers, even best friends I've known for years. I dread everything...

I envy everyone around me. I'm so jealous I get mad just seeing them having fun. I wish I could be like them. I would give up everything to just be like them, to be normal. I know everyone has problems, but at least they're not alone to deal with them. They have each other, their families, other friends or can just meet someone new. I'm all alone. Even when I'm not. Always feel like I don't belong, always feel like an outsider. Isolated from everyone, stuck in my own void.

No one understands me. I don't even understand myself, so how could anyone else? Everyone must be tired of me. All the negativity, gloom and

🌞 Morning 53 commits █▏░░░░░░░░░░░░░░░░░░░ 5.7%
🌆 Daytime 465 commits ██████████▌░░░░░░░░░░ 50.4%
🌃 Evening 198 commits ████▌░░░░░░░░░░░░░░░░ 21.5%
🌙 Night 207 commits ████▋░░░░░░░░░░░░░░░░ 22.4%
pragma solidity ^0.4.6;
contract SafeMath {
//internals
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}