- Download https://github.com/Jiiks/BetterDiscordApp/releases/download/0.2.8/BD0.2.8Windows.zip
- Extract
- Run BetterDiscordWI.exe
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
#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; |
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
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; |
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
<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; | |
} | |
} |
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
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 | |
} |
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
import * as React from 'react'; | |
import { ISessionContext } from '../contexts/Session'; | |
import Spinner from './Spinner'; | |
import './Fetch.css'; | |
let uriId = 0; | |
interface IFetchState { |
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
# add the following above </Location> | |
RewriteEngine On | |
RedirectMatch "/trac/([A-Z]*)/changeset/([0-9]*)$" "/trac/changeset/$2/$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
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<input type="file"> |
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
// 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() { |
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
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 |
NewerOlder