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
public static Color phoenixifyColor(Color originalPixelColor) { | |
// https://www.elon.edu/e/university-communications/identity/colors.html | |
final Color PHOENIX_MAROON = new Color(115, 0, 10); | |
final Color PHOENIX_GOLD = new Color(181, 154, 87); | |
// linear phoenixify | |
// final double RED_FACTOR = (PHOENIX_GOLD.getRed() - | |
// PHOENIX_MAROON.getRed()) / MAX_COLOR_VALUE; | |
// final double GREEN_FACTOR = (PHOENIX_GOLD.getGreen() - | |
// PHOENIX_MAROON.getGreen()) / MAX_COLOR_VALUE; |
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
license: gpl-3.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
license: gpl-3.0 | |
height: 600 |
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
license: gpl-3.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
# Editor backup files | |
*.bak | |
*~ |
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
license: gpl-3.0 | |
border: no | |
height: 1060 |
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
license: gpl-3.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
license: gpl-3.0 | |
height: 960 |
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
javascript:(function(){var noMoreCt = 0; var loadMoreInterval = window.setInterval(function () {var btns = document.getElementsByClassName('load-more-button'); if (btns.length > 0) {Array.prototype.forEach.call(btns,function (btn){btn.click();console.log('clicked');});} else {if(noMoreCt >=4) {window.clearInterval(loadMoreInterval);} else {noMoreCt++;}}}, 250);})(); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hello World</title> | |
<script type="text/javascript"> | |
setTimeout(function() { console.log("hello world") }, 2000); | |
</script> | |
</head> | |
<body> |