- foo
- bar
- baz
- bar
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(){$("#annotation-scroller").appendTo("body");$("#a-page").remove();$("#a-popover-root").remove();$(".a-popover-trigger").parent().parent().remove();$(".kp-notebook-row-separator").css("width","inherit");$(".kp-notebook-print-override").css("width","inherit")})(); |
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(){$(".container.main").css("width","initial");$(".timetable.size-normal").css("width","initial");$(".scale").css("width","5%");$(".date").css("width","95%").css("display","table").css("table-layout","fixed");$(".track").css("width","initial").css("float","none").css("display","table-cell")})(); |
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
let intervalInSecond = 1 | |
let stopScrolling = (function(seconds) { | |
let intervalId = setInterval(function() { | |
window.scrollBy(0, window.pageYOffset) | |
}, seconds * 1000) | |
return function() { | |
clearInterval(intervalId) | |
}; | |
})(intervalInSecond); |
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(){$(".container.bg-timetable").css("max-width","90%");$(".fc-scroller.fc-time-grid-container").css("height","initial");$("#calendar").css("width","initial")})(); |
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 | |
class SimpleDelegate { | |
protected $callbacks = []; | |
public function add(Closure $callback, $key = null){ | |
$key = $key?: spl_object_hash($callback); | |
$this->callbacks[$key] = $callback; | |
} |
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
/session |
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/sh | |
echo " #${0} begin" | |
echo " echo \$WORKING_DIR" | |
echo " ${WORKING_DIR}" | |
echo " #${0} end" |