Install Better Discord
- Download https://github.com/Jiiks/BetterDiscordApp/releases/download/0.2.8/BD0.2.8Windows.zip
- Extract
- Run BetterDiscordWI.exe
#include <CommonCrypto/CommonDigest.h> | |
- (void) md5:(NSString *)path | |
{ | |
unsigned char md[CC_MD5_DIGEST_LENGTH]; | |
char hash[CC_MD5_DIGEST_LENGTH*2+1]; | |
CC_MD5_CTX ctx; | |
char buf[4096]; | |
size_t s; | |
size_t total = 0; |
function compare(a,b) { | |
if (typeof a != typeof b) return false; | |
function compareObjects(a, b) { | |
const ka = Object.keys(a); | |
const kb = Object.keys(b); | |
if (ka.length != kb.length) return false; | |
for (let k of ka) { | |
if (!(k in b) || !compare(a[k], b[k])) return false; | |
} | |
return true; |
<style> | |
@-webkit-keyframes animateBorder { | |
0% { | |
background-position: left top, right top, right bottom, left bottom; | |
} | |
100% { | |
background-position: right top, right bottom, left bottom, left top; | |
} | |
} |
function startsWith(string, target, position) { | |
debugger; | |
const { length } = string | |
position = position == null ? 0 : position | |
if (position < 0) { | |
position = 0 | |
} | |
else if (position > length) { | |
position = length | |
} |
import * as React from 'react'; | |
import { ISessionContext } from '../contexts/Session'; | |
import Spinner from './Spinner'; | |
import './Fetch.css'; | |
let uriId = 0; | |
interface IFetchState { |
# add the following above </Location> | |
RewriteEngine On | |
RedirectMatch "/trac/([A-Z]*)/changeset/([0-9]*)$" "/trac/changeset/$2/$1" |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<input type="file"> |
// Based on https://github.com/schchr/cordova-plugin-timers/ | |
private int timerCount = 0; | |
private Hashtable<Integer, PendingIntent> timerIntents; | |
AlarmManager alarmManager = null; | |
private PluginResult setTimeout(JSONArray args) throws JSONException { | |
final int timerId = ++timerCount; | |
int time = args.getInt(0); | |
BroadcastReceiver mReceiver = new BroadcastReceiver() { |
lib/cu-components/cu-components.bundle.js | |
lib/cu-components/cu-components.css | |
lib/cu-components/unitframe/unitframe.bundle.js | |
lib/cu-components/skillbar/skillbar.bundle.js |