Firefox | GeckoMain eats your CPU
about:preferences#general: Performance: Uncheck them all. about:preferences#privacy: Disable Firefox telemetry
about:preferences#general: Performance: Uncheck them all. about:preferences#privacy: Disable Firefox telemetry
always use the -W parameter, otherwise you will earn an error (38: can not parse arg #1) that means your peer is unknown afaik its impossible to send strings to stdin address clients/channels whos name contain spaces by their id (user#1234567890 or channel#1234567890) use the -I and -N parameters still problematic? try https://bytesandbones.wordpress.com/2021/11/03/telegram-channel-linux-console-scripting-setup/
install telegram-send on mobile phone: create a public channel + get the url create a bot by talking to botfather + get the apikey (the leading number is part of the key) make your bot a channel admin run # telegram-send –config ~/.config/telegram-send-MYCHANNEL.cfg –configure-channel https://github.com/rahiel/telegram-send https://core.telegram.org/bots/api#formatting-options printf “huhu \U0001F4A8\n\U0001F4A7” | telegram-send –disable-web-page-preview –config ~/.config/telegram-send.conf –format […]
ARRAY=(${STRING//,/ }) Dont forget the space character after the last slash.
pipe it to xargs stdin
# zammad run rails c > Setting.get(‘html_email_css_font’) > Setting.set(‘html_email_css_font’, “font-family:’Helvetica Neue’, Helvetica, Arial, Geneva, sans-serif; font-size: 13px;”)
Open the rails console: # zammad run rails c Add a priority with an english name: > Ticket::Priority.create(name: ‘4 critical’, default_create: false, note: nil, active: true, updated_by_id: 1, created_by_id: 1, created_at: Time.now, updated_at: Time.now) Create a translation into your language: > Translation.create_if_not_exists( :locale => ‘de-de’, :source => “4 critical”, :target => “4 kritisch”, format: ‘string’, […]
You must be logged in to post a comment.