Eric Bartholemy

Results 9 comments of Eric Bartholemy

@northcott-j you could make use of `nokogiri` in order to create the html markup. ``` spec.add_dependency 'nokogiri', '~> 1.8.2' # parser ```

@victorialo There was a discussion in #7 that there are different kind of archives exported. You might also have such an archive. What would be great if you can provide...

@victorialo The friend names are sensitive information, so you want to keep that private. What is currently parsed are these files: `/html/friends.htm` `/html/contact_info.htm` `/html/friends.htm` `/messages/*.html` `/index.htm` The main interest is...

Maybe because you have more information gathered the `html` directory is missing and split into folders. `/html/contact_info.htm` might map to your `profile_information` folder `/html/friends.htm` might map to your `friends` folder...

@victorialo I have create PR #33 - maybe you can check out that branch and see if this removes all sensitive information from your export. Then @northcott-j and the others...

@victorialo can you run `bin/anonymized_facebook_export --catalog --export

# Different Archives (that do not work) ## krishna015 #7 ![krishna015 Archive](https://user-images.githubusercontent.com/4009775/39568781-2cbb8528-4e78-11e8-883d-128c53f03be1.png) ## victorialo #22 ![victorialo Archive](https://user-images.githubusercontent.com/8223909/38777424-744a2a02-409f-11e8-886e-afa1389225f5.png) # Archives that work currently ## MetricMike #7 ![MetricMike Archive](https://user-images.githubusercontent.com/311365/38770383-56997dba-3fe0-11e8-805d-bdb6720c0dbc.png) ![MetricMike Archive 2](https://user-images.githubusercontent.com/311365/38770400-9d3796a8-3fe0-11e8-9a14-b3c27b4bd9c8.png)

In order to analyse the different archives, an option might be, to make a script that will replace the text with a random string of the same length. That way...

Hi @mleonhard, On Android, I have selected Region "United States" and Time zone "Chicago (GMT-05:00)" in the device settings on the emulator. ```dart _timezone = await FlutterNativeTimezone.getLocalTimezone(); # returns "America/Chicago"...