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
// ==UserScript== | |
// @name ChatGPT CSS fixes | |
// @version 2025-04-24 | |
// @updateURL https://gist.github.com/alexchexes/d2ff0b9137aa3ac9de8b0448138125ce/raw/chatgpt_ui_fix.user.js | |
// @downloadURL https://gist.github.com/alexchexes/d2ff0b9137aa3ac9de8b0448138125ce/raw/chatgpt_ui_fix.user.js | |
// @namespace http://tampermonkey.net/ | |
// @description Adjusts width of side bar and messages of the ChatGPT web interface | |
// @author alexchexes | |
// @match https://chat.openai.com/* | |
// @match https://chatgpt.com/* |
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 | |
# /etc/init.d/zookeeper: start the zookeeper daemon. | |
# chkconfig: - 80 20 | |
# description: zookeeper | |
ZK_HOME=/opt/kafka | |
ZK_USER=root | |
ZK_SCRIPT=$ZK_HOME/bin/zookeeper-server-start.sh | |
ZK_CONFIG=$ZK_HOME/config/zookeeper.properties |
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 | |
# /etc/init.d/kafka: start the kafka daemon. | |
# chkconfig: - 80 20 | |
# description: kafka | |
KAFKA_HOME=/usr/share/kafka | |
KAFKA_USER=root | |
KAFKA_SCRIPT=$KAFKA_HOME/bin/kafka-server-start.sh | |
KAFKA_CONFIG=$KAFKA_HOME/config/server.properties |