This file contains hidden or 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
########################################################### | |
# AUTHOR : [email protected] | |
# DATE : 10.06.21 | |
# Edit : N/A | |
# COMMENT : This script installs rootCA.pem from the | |
# Mkcert program if it exists and replaces any old certs if | |
# thumbprints are different. | |
# VERSION : 1.0.0 | |
########################################################### |
This file contains hidden or 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
useEffect(() => { | |
if (!isSidebarOpen) { | |
removeAllListeners(document.body, "click"); | |
} else { | |
addListener(document.body, "click", (event: MouseEvent) => | |
handleBodyClick(event, "sidebar", setIsSidebarOpen) | |
); | |
} | |
if (localStorage) { |
This file contains hidden or 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 { Level1 } from "../elements/depth/shadow"; | |
import { styled, css } from "../../theme/util/helpers"; | |
import { counterstrikeYellowColor } from "../../theme/theme/colors"; | |
import React, { FC } from "react"; | |
interface AvatarContainerProps { | |
src?: string; | |
width?: string; | |
height?: string; | |
borderRadius?: string; |
This file contains hidden or 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
const keyMirror = (actions: string[]) => { | |
const mirror: Partial<any> = {}; | |
actions.forEach(action => { | |
mirror[action] = action; | |
}); | |
return mirror; | |
}; |
This file contains hidden or 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
teamData[teamId].sort(function(a, b) { | |
if (a.kills! < b.kills!) { | |
return -1; | |
} | |
if (a.kills! > b.kills!) { | |
return 1; | |
} | |
return 0; | |
}) |
This file contains hidden or 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
https://github.com/ZZROTDesign/docker-clean |
This file contains hidden or 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
#! /bin/bash | |
# Don't want to interpret variables whilst reading from the HEREDOC - thus the single quotes... potto | |
cat << 'EOF' >> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js | |
document.addEventListener('DOMContentLoaded', function() { | |
$.ajax({ | |
url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css', | |
success: function(css) { | |
$("<style></style>").appendTo('head').html(css); | |
} |
This file contains hidden or 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
<?php | |
function debugToConsole($msg) { | |
echo "<script>console.log(".json_encode($msg).")</script>"; | |
} | |
debugToConsole('bla'); | |
?> |
This file contains hidden or 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
{"dark":"1","docs":"css/dom/dom_events/html/http/javascript/angular/angular~4/angular~2/angularjs~1.6/angularjs~1.5/angularjs~1.4/angularjs~1.3/angularjs~1.2/ansible~2.4/apache_http_server/apache_pig~0.17/apache_pig~0.16/apache_pig~0.15/apache_pig~0.14/apache_pig~0.13/async/babel/backbone/bluebird/bootstrap~4/bootstrap~3/bottle~0.12/bottle~0.11/bower/c/cpp/cakephp~3.5/cakephp~3.4/cakephp~3.3/cakephp~3.2/cakephp~3.1/cakephp~2.10/cakephp~2.9/cakephp~2.8/cakephp~2.7/chai/chef~12/chef~11/clojure~1.9/clojure~1.8/clojure~1.7/cmake~3.10/cmake~3.9/cmake~3.8/cmake~3.7/cmake~3.6/cmake~3.5/codeception/codeceptjs/codeigniter~3/coffeescript~2/coffeescript~1/cordova~7/cordova~6/crystal/d/d3~4/d3~3/django~2.0/django~1.11/django~1.10/django~1.9/django~1.8/docker~17/docker~1.13/docker~1.12/docker~1.11/docker~1.10/dojo/drupal~8/drupal~7/electron/elixir~1.6/elixir~1.5/elixir~1.4/elixir~1.3/ember/erlang~20/erlang~19/erlang~18/eslint/express/falcon~1.4/falcon~1.3/falcon~1.2/fish~2.7/fish~2.6/fish~2.5/fish~2.4/fish~2.3/fish~2.2/fl |
This file contains hidden or 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
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "Available packages: " | |
adb shell pm list packages | sed 's/^package://' | |
echo "You must pass a package to this function!" | |
echo "Ex.: android_pull_apk \"com.android.contacts\"" | |
exit 1 | |
fi |
NewerOlder