This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Decode LastPass Dump XML</title> | |
| </head> | |
| <body> | |
| <h4>Instructions</h4> | |
| <ol> | |
| <li>Run the JS code snippet below in the developer console for a LastPass extension vault tab.</li> | |
| <li>Copy the results to the clipboard.</li> | |
| <li>Paste the contents into the Encoded XML text area below.</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [merge] | |
| tool = bc3 | |
| [diff] | |
| guitool = bc3 | |
| tool = bc3 | |
| [difftool "bc3"] | |
| path = /mnt/c/Program Files/Beyond Compare 4/BComp.exe | |
| [mergetool "bc3"] | |
| path = /mnt/c/Program Files/Beyond Compare 4/BComp.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Timers; | |
| namespace EntropyServer.Engine | |
| { | |
| public class GameClock | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| void main() { | |
| printf("Hello, world!\n"); | |
| } |