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
| // Wrap the entire function in parentheses to make it an IIFE (Immediately Invoked Function Expression) | |
| (async function () { | |
| const MAX_PER_DAY = 400; // Maximum number of unfollows allowed per day | |
| const PAUSE_AFTER_BATCH = 10; // Pause after every 10 unfollows | |
| const PAUSE_DURATION = 10 * 60 * 1000; // Pause duration: 10 minutes (in ms) | |
| // Helper function: Creates a promise that resolves after ms milliseconds | |
| const delay = (ms) => new Promise(r => setTimeout(r, ms)); | |
| // Helper function: Returns random integer between min and max (inclusive) |
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
| { | |
| "global": { "show_in_menu_bar": false }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "rules": [ | |
| { | |
| "description": "non_us_backslash to grave_accent_and_tilde_ru", | |
| "manipulators": [ | |
| { |
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
| .b-task-microcard .task-microcard-row .tbl-check-list-header { | |
| display: none !important; | |
| } | |
| .planner-block-list-h.colored {padding: 7px; | |
| font-size: large;} | |
| .planner-block-collapse-b-hor .planner-block-collapse-filter-name {padding: 7px; | |
| font-size: large;} | |
| .planner-item-list.dl-task-microcard-container {margin-top: 17px;} | |
| .planner-block-list-h-head {height: 34px !important; |
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
| #sale-invoice-btn {background-color: #AE3F93!important;} | |
| #mini-tab-content-tickets_5326 {display:none;} | |
| #orders_price_group,#vat_method, #orders_price_group_cost, #settlement_discount, #settlement_days {display:none;} | |
| #invoice-products > table:nth-child(3) > tbody > tr > td:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div.label_fw {display:none;} | |
| #tabs-1 > fieldset:nth-child(7) > dl > dt > label {display:none;} | |
| #tabs-1 > fieldset:nth-child(2) > dl:nth-child(4) > dd {display:none;} | |
| #tabs-1 > fieldset:nth-child(2) > dl:nth-child(4) > dt {display:none;} | |
| #tabs-1 > fieldset:nth-child(2) > dl:nth-child(5) > dt {display:none;} | |
| #tabs-1 > fieldset:nth-child(2) > dl:nth-child(5) > dd {display:none;} | |
| #invoice-products > table:nth-child(3) > tbody > tr > td:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div.label_fw {display:none;} |
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
| <ul> | |
| {% comment %}A linklist should be created called "Collections" containing each of the "top" level collections{% endcomment %} | |
| {% for link in linklists.collections.links %} | |
| {% assign col = link.object %} | |
| <li class="{% if col.handle == collection.handle %}active{% endif %}"> | |
| <a href="{{ link.url }}"><span>{{ link.title }}</span></a> | |
| {% if col.all_tags.size > 0 %} | |
| <ul> | |
| {% assign tag_index = 0 %} | |
| {% assign current_tag = "" %} |