Damn, was hoping this was an article about how to encode Windows executables into text.
Ask and ye shall receive (in powershell form): $fName = "last.exe" $fContent = get-content $fName $fContentBytes = [System.Text.Encoding]::UTF8.GetBytes($fContent) $fContentEncoded = [System.Convert]::ToBase64String($fContentBytes) $fContentEncoded set-content ($fName + ".text") Now you can at least say that all your .exes live in base64-encoded .texts.
All My Exes Live in Texts
11–20 of 29 posts
Re: All My Exes Live in Texts
#12Damn, was hoping this was an article about how to encode Windows executables into text.
Ask and ye shall receive (in powershell form): $fName = "last.exe" $fContent = get-content $fName $fContentBytes = [System.Text.Encoding]::UTF8.GetBytes($fContent) $fContentEncoded = [System.Convert]::ToBase64String($fContentBytes) $fContentEncoded set-content ($fName + ".text") Now you can at least say that all your .exes live in base64-encoded .texts.
Get-PSDrive -PSProvider Filesystem |
Get-ChildItem -Recurse -Path { $_.Root } -Filter *.exe |
ForEach-Object {
$bytes = Get-Content $_ -Encoding Byte -ReadCount 0
$text = [Convert]::ToBase64String($bytes)
$text | Set-Content ($_.FullName + '.text')
}
Reading the files as UTF-8 and converting them back into a byte array isn't such a great idea, I think ;-)Re: All My Exes Live in Texts
#13I just graduated college this May and so the way I'm relating to the piece isn't so much with maintaining contact with exes, but maintaining contacts with college friends. There are certainly different 'levels' of friendship. Some I could see maintaining contact with frequently (but for how long??), others maybe just 3 or 4 times a year, and others still maybe just a few times every 5 years.
But even my closest friends - suppose I actually gave them a real phone call every month - how long does this keep going? This one comment on the OP site itself certainly hits the nail on the head...
"are you going to be dragging all these people along with you when you are 40? 50? 80? ... You can't take everyone with you."
I can see myself only speaking with my closest college friends maybe a couple times a year, 5 years from now. And that's kind of sad.
Re: All My Exes Live in Texts
#14I'm 22. I have 6 ex girlfriends, and a lot more girls that were not a proper relationship, but for the sake of argument here, we'll call them exes. I deal with this problem simply. I delete them and remove them from my life. There have been no exceptions. I've run into one or two of them around town, said hello, and went my own way. It can be done, oddly enough. But then, I don't ascribe any meaning to deleting someo…
Re: All My Exes Live in Texts
#15If your personal history includes memories of 36 events that make your "stomach churn," maybe you should investigate the cause for the events. You might trace all of them back to one origin. That's the root problem. So before you lament the impossibility of resolving your personal issues, try to fix them yourself. Don't excuse your behavior based on the presence of a controllably negative influence like Facebook. It…
I feel like your rant places the blame solely on the user herself and not on the usability problems associated in the Facebook era.
E.g. blocking an ex would be easy. Yet, it also means that you cannot see if the other person is going to an event or not. This is an issue for certain people who don't really want to hang out at a certain event if their ex is going to it. The other alternative is to keep seeing them appear in your facebook interaction someway or the other: your chat box shows them as one of the most frequently messaged people; suggested events may be because they are going to a certain event.
Re: All My Exes Live in Texts
#16I'm 22. I have 6 ex girlfriends, and a lot more girls that were not a proper relationship, but for the sake of argument here, we'll call them exes. I deal with this problem simply. I delete them and remove them from my life. There have been no exceptions. I've run into one or two of them around town, said hello, and went my own way. It can be done, oddly enough. But then, I don't ascribe any meaning to deleting someo…
Re: All My Exes Live in Texts
#17I'm 22. I have 6 ex girlfriends, and a lot more girls that were not a proper relationship, but for the sake of argument here, we'll call them exes. I deal with this problem simply. I delete them and remove them from my life. There have been no exceptions. I've run into one or two of them around town, said hello, and went my own way. It can be done, oddly enough. But then, I don't ascribe any meaning to deleting someo…
I personally would prefer to be friends with exes. I don't understand why people find it so hard to go from dating to freidship. Of course it's awkward at first, just like your first date was awkward, but you push past it if its someone you'll enjoy in your life.
You must not have a large sample set to work on then. A friend of mine came out of a two year relationship where his ex slept with a close friend. Sure it is "awkward", sure they have a lot in common. However, why does he need to go through all the pain in order to be friends with her (or maintain a friendship with the other friend for that matter)? There are millions of people out there to be your friends, your lovers. Delete, walk away works just as easily.
Re: All My Exes Live in Texts
#18The comments on the site are a little brutal! I enjoyed the read, though I feel like at this moment in time I relate to it much more than I might otherwise. I just graduated college this May and so the way I'm relating to the piece isn't so much with maintaining contact with exes, but maintaining contacts with college friends. There are certainly different 'levels' of friendship. Some I could see maintaining contact…
Re: All My Exes Live in Texts
#19I'm 22. I have 6 ex girlfriends, and a lot more girls that were not a proper relationship, but for the sake of argument here, we'll call them exes. I deal with this problem simply. I delete them and remove them from my life. There have been no exceptions. I've run into one or two of them around town, said hello, and went my own way. It can be done, oddly enough. But then, I don't ascribe any meaning to deleting someo…
That system breaks down if you start dating from within your social circle (friends of friends). I know you'll tell me it's a big no-no but you'd be surprised how much more common it becomes as you get older
Re: All My Exes Live in Texts
#20Earlier quoted context omitted.
I personally would prefer to be friends with exes. I don't understand why people find it so hard to go from dating to freidship. Of course it's awkward at first, just like your first date was awkward, but you push past it if its someone you'll enjoy in your life.
> I don't understand why people find it so hard to go from dating to freidship. You must not have a large sample set to work on then. A friend of mine came out of a two year relationship where his ex slept with a close friend. Sure it is "awkward", sure they have a lot in common. However, why does he need to go through all the pain in order to be friends with her (or maintain a friendship with the other friend for th…