- Open up the Twitter profile for whoever it is you want to archive.
- Scroll to the bottom until all tweets in the time period you want to archive have loaded.
- Open up the page inspector/developer tools in your browser.
- In the console within the dev tools, paste in this Javascript snippet and run:
Array.prototype.map.call($('div.tweet').map((i, e) => $(e).attr('data-permalink-path')), l => 'https://twitter.com' + l).join('\n')
- Archive each of the URLs in the resulting list using archive.is or other archive site. Sorry, this part can't really be automated :(
This file contains 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
namespace System.ComponentModel | |
{ | |
public class AsyncCompletedEventArgs<T> : AsyncCompletedEventArgs | |
{ | |
private T result; | |
public AsyncCompletedEventArgs(Exception error, bool cancelled, object userState) | |
: base(error, cancelled, userState) | |
{ } |
This file contains 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 Scoreloop.CoreSocial.API; | |
using Scoreloop.CoreSocial.API.Model; | |
using System.Threading.Tasks; | |
using ScoreloopGame = Scoreloop.CoreSocial.API.Model.Game; |
This file contains 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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text; | |
namespace Charabaruk.Utility | |
{ | |
static class EnumEx |
This file contains 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
static void RegisterServices() | |
{ | |
var container = TinyIoCContainer.Current; | |
ServiceLocator.SetLocatorProvider(() => new TinyIoCServiceLocator(container)); | |
container.Register<ISettingsService>((c, o) => new CliOptionsSettingsService()); | |
// ... | |
} |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">.\</SolutionDir> | |
</PropertyGroup> | |
<PropertyGroup> | |
<xUnitPackageVersion>2.0.0-rc3-build2880</xUnitPackageVersion> | |
<PackageDir>$(SolutionDir)packages\xunit.runners.$(xUnitPackageVersion)\</PackageDir> | |
<NUnitXslFile>$(PackageDir)tools\NUnitXml.xslt</NUnitXslFile> | |
<TestResultFile>$(SolutionDir)TestResult.xml</TestResultFile> |
This file contains 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
C:/HashiCorp/Vagrant/embedded/lib/ruby/2.2.0/rubygems/user_interaction.rb:687:in `initialize': Invalid argument @ rb_sysopen - /dev/null (Errno::EINVAL) | |
from C:/HashiCorp/Vagrant/embedded/lib/ruby/2.2.0/rubygems/user_interaction.rb:687:in `open' | |
from C:/HashiCorp/Vagrant/embedded/lib/ruby/2.2.0/rubygems/user_interaction.rb:687:in `initialize' | |
from C:/HashiCorp/Vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/ui/rg_proxy.rb:9:in `initialize' | |
from C:/HashiCorp/Vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler.rb:100:in `new' | |
from C:/HashiCorp/Vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler.rb:100:in `ui=' | |
from C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/bundler.rb:32:in `initialize' | |
from C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/bundler.rb:18:in `new' | |
from C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/bundler.rb:18:in `instance' | |
from C:/HashiCorp/Vagrant/embedd |
This file contains 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
// Copyright (c) 2016 Christopher S. Charabaruk <chris.charabaruk%%outlook.com> | |
public class PivotCaesar | |
{ | |
public static void Main(string[] args) | |
{ | |
if (args[0] == "-d" || args[0] == "--decrypt") | |
{ | |
foreach (var message in args.Skip(1)) | |
{ |
This file contains 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
Verifying that "coldacid.id" is my Blockstack ID. https://onename.com/coldacid |
This file contains 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
<?xml version="1.0" encoding="UTF-16"?> | |
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> | |
<RegistrationInfo> | |
<Date>2017-06-20T20:15:13.3116334</Date> | |
<Author>MACHINENAME\UserAccount</Author> | |
<URI>\Lock SSH Agent</URI> | |
</RegistrationInfo> | |
<Triggers> | |
<SessionStateChangeTrigger> | |
<Enabled>true</Enabled> |
OlderNewer