Issue
~/p/pdf-sum ❯❯❯ gca
Committing all files (9)
git_commit_prompt:vared:8: ZLE not enabled
Aborting commit due to empty commit message.
Fix
| #!/bin/bash | |
| rm -rf ~/.local/share/gnome-shell/extensions/clipboard-indicator@tudmotu.com | |
| git clone https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator.git ~/.local/share/gnome-shell/extensions/clipboard-indicator@tudmotu.com | |
| gnome-extensions enable clipboard-indicator@tudmotu.com |
Issue
~/p/pdf-sum ❯❯❯ gca
Committing all files (9)
git_commit_prompt:vared:8: ZLE not enabled
Aborting commit due to empty commit message.
Fix
One of the common errors after running updates on your Arch Linux system:
error: key "..." could not be imported
error: required key missing from keyring
error: failed to commit transaction (unexpected error)
Errors occurred, no packages were upgraded.
Fix:
| import requests | |
| import hashlib | |
| import hmac | |
| import base64 | |
| import json | |
| from django.conf import settings | |
| def base64(st): | |
| return base64.b64encode(st.encode('utf-8')).decode('utf-8') |
| [ | |
| { | |
| "province": "1", | |
| "name": "Sagarmatha", | |
| "districts": [ | |
| "Bhojpur", | |
| "Dhankuta", | |
| "Ilam", | |
| "Jhapa", | |
| "Khotang", |
| =CONCAT(INT(RAND()*10), CHAR(48+RAND()*10), INT(RAND()*10),CHAR(65+RAND()*26),INT(RAND()*1000),CHAR(97+RAND()*26),INT(RAND()*1000)) |
| #!/bin/sh | |
| echo | |
| exec /usr/bin/uptime |
| {% load i18n %} | |
| {% if is_paginated %} | |
| <nav aria-label="navigation" class="p-3"> | |
| <ul class="pagination"> | |
| {% if page_obj.has_previous %} | |
| <li class="page-item"> | |
| <a href="?page={{ page_obj.previous_page_number }}" aria-label="Previous" class="page-link previous"> | |
| ‹‹ {% trans "Previous" %} | |
| </a> | |
| </li> |
| {% load i18n %} | |
| {% if is_paginated %} | |
| <nav aria-label="navigation" class="p-3"> | |
| <ul class="pagination"> | |
| {% if page_obj.has_previous %} | |
| <li class="page-item"> | |
| <a href="?{{ page_obj.previous_page_number.querystring }}" | |
| class="page-link previous">‹‹ {% trans "Previous" %}</a> | |
| </li> | |
| {% else %} |