-
Download an ad blocker that supports EasyList filtering syntax. I personally use uBlock Origin.
-
Add the following custom filter to the extension:
twitter.com##[aria-label="Timeline: Your Home Timeline"] article:not(:has-text(/arxiv.org/i))
Download an ad blocker that supports EasyList filtering syntax. I personally use uBlock Origin.
Add the following custom filter to the extension:
twitter.com##[aria-label="Timeline: Your Home Timeline"] article:not(:has-text(/arxiv.org/i))
Unavailable - VMWare took down my VMWare Workstation Pro 17 keys gist, so, to prevent legal issues i'll be taking this down too. | |
You can find evidence at https://gist.github.com/PurpleVibe32/30a802c3c8ec902e1487024cdea26251/forks |
/** | |
* Set this on a textview and then you can potentially open links locally if applicable | |
*/ | |
public class DefaultLinkMovementMethod extends LinkMovementMethod { | |
private OnLinkClickedListener mOnLinkClickedListener; | |
public DefaultLinkMovementMethod(OnLinkClickedListener onLinkClickedListener) { | |
mOnLinkClickedListener = onLinkClickedListener; | |
} |
const int VertexOffset[8][3] = { | |
{0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}, | |
{0, 0, 1}, {1, 0, 1}, {1, 1, 1}, {0, 1, 1} | |
}; | |
const int EdgeConnection[12][2] = { | |
{0, 1}, {1, 2}, {2, 3}, {3, 0}, | |
{4, 5}, {5, 6}, {6, 7}, {7, 4}, | |
{0, 4}, {1, 5}, {2, 6}, {3, 7} | |
}; |
#!/bin/bash | |
# This script will compile and install a static ffmpeg build with support for nvenc in ubuntu. | |
# See the prefix path and compile options if edits are needed to suit your needs. | |
# NOTE: This build is made to target Ubunutu 16.04 Data-Science Azure VMs - With nVidia 418.xx drivers and CUDA SDK 9.0. | |
# It also relies on a hack described in https://trac.ffmpeg.org/ticket/6431#comment:7 to make glibc dynamic still. | |
# Long story short, you need to edit your ffmepg's configure script to avoid failures on libm and libdl. | |
# in function probe_cc, replace the _flags_filter line to: _flags_filter='filter_out -lm|-ldl' |
package se.hellsoft.jetpackcomposeintro | |
import android.os.Bundle | |
import androidx.appcompat.app.AppCompatActivity | |
import androidx.compose.Composable | |
import androidx.compose.Model | |
import androidx.compose.state | |
import androidx.compose.unaryPlus | |
import androidx.ui.core.* | |
import androidx.ui.foundation.shape.border.Border |
/** | |
* Include the PrivateDependencyModuleNames entries below in your project build target configuration: | |
* PrivateDependencyModuleNames.AddRange(new string[] { "Json", "JsonUtilities" }); | |
*/ | |
#include "Runtime/Online/HTTP/Public/Http.h" | |
#include "Serialization/JsonSerializer.h" | |
FHttpResponsePtr Response; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Add React in One Minute</title> | |
</head> | |
<body> | |
<h2>Add React in One Minute</h2> | |
<p>This page demonstrates using React with no build tooling.</p> |
import requests # dependency | |
url = "<your url>" # webhook url, from here: https://i.imgur.com/f9XnAew.png | |
# for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook | |
data = { | |
"content" : "message content", | |
"username" : "custom username" | |
} |