删除所有微博
在Chrome Dev Tools中粘贴代码到Console,就可以删除当前屏幕所有微博。经过测试一万条微博大约需要10小时的半人工操作。
每批删除大概一分钟,最多50条。
如果遇到微博的Rate limit(提示操作过快),稍等三五分钟再试即可。
| Settings on Twidere: | |
| API URL Format: https://your-host/[DOMAIN.]twitter.com/ | |
| Uncheck "Same OAuth signing URL" | |
| Uncheck "No verion suffix" | |
| Password login recommended. |
删除所有微博
在Chrome Dev Tools中粘贴代码到Console,就可以删除当前屏幕所有微博。经过测试一万条微博大约需要10小时的半人工操作。
每批删除大概一分钟,最多50条。
如果遇到微博的Rate limit(提示操作过快),稍等三五分钟再试即可。
| import android.annotation.SuppressLint; | |
| import android.content.Context; | |
| import android.support.v4.view.MotionEventCompat; | |
| import android.view.InputDevice; | |
| import android.view.MotionEvent; | |
| import android.view.View; | |
| import android.widget.HorizontalScrollView; | |
| import android.widget.ScrollView; | |
| /** |
| language: android | |
| android: | |
| components: | |
| # Uncomment the lines below if you want to | |
| # use the latest revision of Android SDK Tools | |
| - platform-tools | |
| - tools | |
| # The BuildTools version used by your project | |
| - build-tools-22.0.0 |
| <?xml version="1.0" encoding="utf-8"?> | |
| <RelativeLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:orientation="horizontal" | |
| android:baselineAligned="false"> | |
| <ImageView |
| package org.mariotaku.twidere.util; | |
| import android.view.View; | |
| import android.widget.AbsListView; | |
| import android.widget.AbsListView.OnScrollListener; | |
| /** | |
| * Created by mariotaku on 14/10/22. | |
| */ | |
| public class ListScrollDistanceCalculator implements OnScrollListener { |
| #include <stdio.h> | |
| unsigned int wps_pin_checksum(unsigned int pin); | |
| int main(int argc, char *argv[]) | |
| { | |
| int pin; | |
| if ((argc == 2 && sscanf(argv[1], "%i", &pin)) || fscanf(stdin, "%i", &pin)) | |
| { | |
| if (pin > 9999999) |