Facebook seine Antwort auf Datenschutzanfrage

4. Februar 2012 at 17:27

Facebook LogoIhr erinnert euch an meine Anfrage an Facebook zur Herausgabe aller über mich erfassten Personenbezogenen Daten welche am 28.09.2011 erfolgte?

Am 03.02.2012, nach über 3 Monate, kam die Antwort welche nur Allg. bla bla enthält:

Hi,
We are sending you this email to update you on our agreement with the Office of the Data Protection Commissioner of Ireland regarding subject access requests. Following conversation with the Office, Facebook agreed to provide further categories of personal data to its members. With the agreement of the Office, this will be accomplished on a rolling basis due to the engineering tasks related to making these new data available in a self-service manner. We expect to have a new tool with additional categories of data to download available in the next few months. However, as soon as you have converted to Facebook’s new profile called “timeline,” you will have immediate access to historical and current data. The following categories of data will be available to you on your timeline and in your “activity log”, which is accessed directly from your timeline:
- Comment on others' posts, photos
- Posts on others' timelines
- Others' posts on your timeline
- Various app activity
- Open graph activity (listened to a song, read an article)
- Status updates
- Likes
- Posts in Groups
- Posts on Pages
- Shared links, photos, other information
- Added friends
We encourage you to explore these features while we work on the new download tool.
Please read through this email to learn more specifically about the types of personal data that Facebook processes and how you can access your personal data.
Personal Data Processed by Facebook
We encourage you to have a look at the “Data Use Policy” (formerly called Privacy Policy), which describes:
• The categories of data being processed by Facebook,
• The personal data that Facebook receives from Facebook members,
• The purpose or purposes of the processing of such data,
• The source or sources(s) of the data, if known, and
• The recipients or categories of recipients to whom Facebook members’ personal data are or may be disclosed
You will find the current version of the Data Use Policy at https://www.facebook.com/about/privacy/
Accessing Your Personal Data – From Your Account
We've built a convenient self-service tool to offer people who use Facebook the opportunity to access the personal data we hold about them. We are adding an additional tool in the coming months. You can access your data immediately any time, free of charge.
To find the self-service data access tool:
1. Click the account menu at the top right of any Facebook page
2. Choose Account Settings
3. Click the link at the bottom of the page "Download a copy of your Facebook data"
Check to see whether we have your credit card information stored by clicking > Account Settings > Payment Methods. From there, you may choose to change or delete stored credit card information.
Please note that we have several measures in place to ensure the security of your information. We require you to confirm your identity to complete the process. You will not be able to access the downloaded information until you have completed the security check.
Your downloaded file may contain sensitive information. You should keep it secure and take precautions when storing, sending or uploading it to any other services.
Remember: You can also access the personal data held in your current profile (timeline) and activity log anytime by logging in to Facebook. When you have logged in, you can correct, change or delete your information. If you are having trouble logging in to your account, please visit our Login and Password help page:
https://www.facebook.com/help/?page=174
Accessing Your Personal Data – Without an Account
If you are unable to access your profile or if you do not have an account, please click here:
https://www.facebook.com/help/contact_us.php?id=166828260073047
You will find a special form here for you to make a request to access your data.
Thanks for contacting Facebook,
Facebook User Operations - Data Access Request Team
Murphy
User Operations
Facebook

Memchache per Telnet löschen / leeren

18. Januar 2012 at 17:33

Den Memcache des Apache könnt ihr wie folgt über Telnet Verbindung leeren/löschen/aktualisieren:

Connected euch zum telnet server und dem memcache port:

telnet localhost 11211

Wenn ihr erfolgreich connected wurdet, erhaltet ihr die Meldung „Connected to localhost.“

Danach einfach ein

flush_all

und mit

quit

wieder telnet beenden. Schon sollte alles „schön“ sein! 🙂

SVN Client für Windows

6. Januar 2012 at 11:28

Ihr sucht ein guten SVN Client für Windows mit SVN Console?
Ich empfehle euch das kostenlose tool tortoisesvn !

PhpStorm 3.0 in Version 3 erschienen: Keep Your Code in Its Best Shape!

29. November 2011 at 14:56

oh phpStorm ist so eben in Version 3.0 erschienen, daher gleich mal installiert.

Hier die Änderungen im Überblick:

Hello from JetBrains!

Great news of the day:  PhpStorm 3.0 — a major upgrade of our PHP IDE — is out!

It brings many new features and improvements, reflecting several hundred of your votes in our issue tracker:

  • Smart Duplicated Code Detector to help you quickly find similar blocks of code through your entire code base and securely get rid of them without losing the intended functionality.
  • A new integrated UML tool allows you to quickly get a bird’s-eye view of your project structure, or even a semantic view of the changes in the recent VCS commits made by your colleagues.
  • To ensure that your code works fast and doesn’t cause any performance bottlenecks, the IDE now includes a profiler.

The key new functionality in PhpStorm 3.0 includes:

  • Smart Duplicated Code Detector
  • PHP UML diagrams
  • Profiling results browser for Xdebug and Zend Debugger engines
  • PhpUnit test runner is now fully compatible with PhpUnit 3.6
  • CoffeeScript support
  • Significant improvements to FTP/SFTP Sync
  • TFS support and revision graph for GIT
  • Streamlined UI across all operating systems

Read more about what’s new and download PhpStorm 3.0.

Also coming soon: WebStorm 3.0 – a lightweight, smart IDE for JavaScript, HTML and CSS! Expect CoffeeScript, Node.JS and JSLint.

Develop with pleasure!
JetBrains Team

Magento: WYSIWYG-Editor im Backend hinzufügen

14. November 2011 at 17:36

Bei neuen Attributen welche im Admin-Backend konfigurierbar sind, ist es bei Text-Feldern des Öfteren gewünscht ein WYSIWYG-Editor zu aktivieren.
Das geht wie folgt:

// Zu erst die Funktion <em>prepareLayout</em>der Elternklasse überschreiben
/**
 * Loads the wysiwyg editor on demand, if enabled.
 *
 * @return Mage_Adminhtml_Block_Widget_Form
 */
 protected function _prepareLayout() {
 parent::_prepareLayout();
 if (Mage::getSingleton('cms/wysiwyg_config')->isEnabled()) {
 $this->getLayout()->getBlock('head')->setCanLoadTinyMce(true);
 }
 }
// danach die addField Methode des fieldset erweitern mit
 /*       'wysiwyg'   => true,
 'config'    => Mage::getSingleton('cms/wysiwyg_config')->getConfig()
*/
// Das Ergebnis sollte dann wie folgt aussehen:
$fieldset->addField('feld_name_text, 'editor', array(
 'name' => 'feld_name_text',
 'label' => Mage::helper('cms')->__('Name des Feldes'),
 'title' => Mage::helper('cms')->__('Name des Feldes'),
 'wysiwyg'   => true,
 'config'    => Mage::getSingleton('cms/wysiwyg_config')->getConfig()
 ));

Usability Optimierung: Die Produktsuche

4. November 2011 at 11:32

Im Conversion Doktor Blog wurde eine Google Analytics Auswertung einer Shopsuche durch geführt, und Hinweise zur Usability-Optimierung gegeben (z.B. wurde fest gestellt das sehr viele nach „Produktsuche“ suchen d.h. ist es sinnvoll dies als „default text“ im Eingabefeld zu setzen.

Apple stellt heute Abend iPhone 5 vor: Tim Cook betritt die Apple-Bühne

4. Oktober 2011 at 17:44

Heute Abend ist soweit, Apple stellt das heiß erwartete iPhone 5 vor mit künstlicher Intelligenz und Sprachsteuerung und vielen mehr. Wir sind alle so gespannt ob die hohen Erwartungen erfüllt werden. Ob das Handy diesmal Kaffee kochen kann?

Magento: Invalid transactional email code: xy

28. September 2011 at 18:19

Taucht der Fehler z.b. bei der Registrierung oder finalen Absendung einer Bestellung auf, so ist die Ursache oft dass ein E-Mail-Template gelöscht wurde (id xy, für xy steht meist die template-id welche in der Datenbank angegeben wurde).

Die Lösung ist eifnach: Unter “System->Configuration->Sales Emails” im Admin-Backend einfach das Template wieder anlegen & speichern, welches vermisst wird.

Datenmißbrauch und aggressiver Datenmißbrauch bei Facebook?

28. September 2011 at 14:23

Wie schon in diesem Artikel über Facebook geschrieben besteht die Möglichkeit der Seblstauskunft über Personen bezogene Daten bei Facebook. Da ich heute gelesen habe das Facebook auch gelöschte Daten speichert, auch gelöschte private messages, will ich das jetzt gerne im Detail von Facebook erfahren was die über mich speichern.

Deshalb habe ich jetzt um Auskunft zu allen über mich gespeicherten Daten bei #Facebook nach §§ 19, 19a, 33, 34 BDSG eingefordert.

So bald es Infos gibt, werde ich euch hier im Blog informieren!

Facebook Formular zur herausgabe personen bezogner Daten – Datenschutz bei Facebook

23. September 2011 at 14:36

Ihr möchtet von Facebook erfahren welche Daten über euch gespeichert wurden (nicht nur die zum downloaden)?

Hier geht es zum Antrgsformular