Sunday, September 16, 2012

Facebook Publishes Your Personal Information Without Your Permission

There are reasons to keep certain information private
Recently I found out I got an account on a website called Scribd.
Well I never heard about this website before, yet it had an public profile with my full name and picture.
Apparently people from my Facebook friends list also have accounts, and "they" followed me and "I" followed them.

At first I was shocked. "I never registered for this site!", "How did they get such personal information?", "Why did it took actions in my name like following other people?!".
At first I thought some idiot friend used an app that stole my information, but it wasn't the case.
I looked into my Facebook privacy settings, and after a short while messing around I found out about "Instant Personalization", or in less misleading words, "We sell your personal information to other sites!".

In the Instant Personaliztion page it says:
"When you first arrive at the following sites, you'll see a notification message and an option to turn off the personalized experience"
But when I entered Scribd, I wasn't given an option to turn it off, in fact the profile with my personal information existed there long before I've ever entered the site.

It seems that Facebook doesn't ask for your permission before enabling Instant Personalization, but it's possible to disable it.
To do so follow these steps:

1. Go to your privacy settings.
2. Go to "Ads, Apps, and Websites".
3. Go to "Instant Personalization".
4. Uncheck the check box that says "Enable instant personalization on partner websites.".



I'm afraid of their next step, what will it be?
Publishing more personal information like birth dates, addresses, and phone numbers, without permission?
I don't think my Facebook account will exist by then...

Wednesday, August 1, 2012

Deus Ex: Invisible War - Windows 7 Fix

Recently I tried to play Deus Ex: Invisible War, but I couldn't run it, it would instantly crash as soon as I open the dx2.exe file.
The reason why it won't run isn't clear.

I looked for a solution and found a way to fix this problem.
To fix this crash you need to patch the game with the euro 1.2 fixed exe, which you can download here.

To install the patch just replace the old dx2.exe, which can be found at
"...\Deus Ex - Invisible War\System\"
with the patched one provided in the RAR file.

Saturday, June 30, 2012

Gmod Third Person View Using Wire And E2 - v2

I made a new version of the third person view, which let you move the camera up and down on the pitch rotation.



And here's the E2 "third_person_v2" code:
@name third Person v2
@inputs
@outputs Angle:angle Position:vector
@persist
@trigger

runOnTick(1)

R = 120

Angle = owner():eyeAngles()
Pitch = Angle:pitch()
Yaw = Angle:yaw()

X = cos(Yaw) * R * (-1)
Y = sin(Yaw) * R * (-1)
Z = sin(Pitch) * R + 90

Zx = R - (cos(Pitch) * R)
Xz = cos(Yaw) * Zx
Yz = sin(Yaw) * Zx

if(Z < 0){Z = 0}
Position = owner():pos() + vec(X+Xz,Y+Yz,Z)

Thursday, June 21, 2012

Gmod Third Person View Using Wire And E2

I decided to share a third person view thing I made in Garry's Mod using Wiremod, and E2.



And here's the E2 "third_person" code:
@name third Person
@inputs
@outputs Angle:angle Position:vector
@persist
@trigger

runOnTick(1)

R = 120

Angle = owner():eyeAngles()
Yaw = Angle:yaw()
X = cos(Yaw) * R * (-1)
Y = sin(Yaw) * R * (-1)

Position = owner():pos() + vec(X,Y,90)