-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
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
// Set testable values; | |
window.Type = { | |
Number: 1, | |
String: 'a', | |
Function: function(){} | |
} | |
// Add a hint method; | |
Function.prototype.hint = function(){ |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
output = null; | |
function initApplication() | |
{ | |
output = document.getElementById("outputPre"); | |
} |
Here are the installation steps on Ubuntu (this installation will also work on any Debian-based distribution):
- Open a terminal window.
- Issue the command sudo apt-get install postgresql.
- Type the sudo password necessary to give you admin rights and hit Enter.
- Allow apt to pick up any necessary dependencies.
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
#--------|[ Explorer ]|--------# | |
e(){ | |
if [ -z $1 ]; then | |
nautilus . | |
else | |
nautilus $1 | |
fi | |
} |