In the root of your project, add .gitlab-ci.yml with the configuration below.
image: node:latest
stages:| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
Most of it is taken from this gist. I just tweaked the script to check the right theme at startup in case the theme change occured when iTerm2 was closed.
Make sure the theme is the same as the themes you have installed (Preferences > Profiles > Colors > Color Presets...). I personally use Solarized Dark and Solarized Light
From someone on the linked gist:
First-time installation steps for me:
- Download the script from GitHub by right-clicking on Raw button and save as...
- copy the script to
$HOME/Library/Application Support/iTerm2/Scripts/AutoLaunch- create AutoLaunch folder if it does not exist
- go to iTerm2 > Scripts > AutoLaunch
| #!/bin/bash | |
| # Credits: https://pastebin.com/NJxfe8Ex | |
| PROTON_VERSION="5.0" | |
| PROTON_DIR=$HOME/.steam/steam/steamapps/common/Proton\ $PROTON_VERSION | |
| RUNNING="$1" | |
| if [ ! -f "$PROTON_DIR/proton" ] ; then | |
| echo "Proton version $PROTON_VERSION not found!"; |
| # Simplified version and explanation at: https://stackoverflow.com/a/64439347/12866353 | |
| import os | |
| import ffmpeg | |
| def compress_video(video_full_path, size_upper_bound, two_pass=True, filename_suffix='cps_'): | |
| """ | |
| Compress video file to max-supported size. | |
| :param video_full_path: the video you want to compress. | |
| :param size_upper_bound: Max video size in KB. |
AddOn:
chrome/userChrome.css in your profile directory:| diff --git a/server/main.js b/server/main.js | |
| index 4c6ddc6e..11b1c792 100644 | |
| --- a/server/main.js | |
| +++ b/server/main.js | |
| @@ -22,4 +22,15 @@ import "../imports/api/userdata.js"; | |
| import "../imports/api/webPushSubscriptions.js"; | |
| import "./leitner.js"; | |
| +// npm install prom-client | |
| +const promClient = require("prom-client"); |
Привет!
Мы в Чатре ищем разработчика. Чатра — это современный чат для сайтов. У нас классный продукт, сделанный с любовью и вниманием к деталям, небольшая дружная команда и больше десяти тысяч клиентов в Северной Америке и Европе.
Не хватает одного — прекрасного разработчика или разработчицы, желающей присоединиться к нашей команде.
The following command will install the latest version of REX-Ray to /usr/bin/rexray on Linux systems:
$ sudo apt install s3fs
$ curl -sSL https://dl.bintray.com/emccode/rexray/install | shDepending on the Linux distribution REX-Ray will be registered as either a SystemD or SystemV service.
REX-Ray requires a configuration file for storing details used to communicate with storage providers. This can include authentication credentials and driver specific configuration options. After REX-Ray has been installed, copy and paste the contents below to a new file on the host at /etc/rexray/config.yml to configure s3fs storage driver.
In this document I describe my setup about how to add a menu shortcut that will hibernate and reboot the system into a different OS (in my case, Windows), and then restore linux on the next reboot.
For this, I'll be using Arch Linux with systemd-boot as my boot manager, but in practice any bootloader that handles the LoaderEntryOneShot (a.k.a. BootNext) efivar should work.
NOTE It is advisable to not do this with window's fast boot feature active, since alternating the hibernation of two systems can cause shared partitions to get corrupted. However, if additional steps are taken in order to ensure the shared partition are unmounted before reboot, or no partitions are shared between the two OSs, this can be made to work with fastboot enabled which should give quite a boost in Windows' startup time.