imagick cli
convert favicon.ico -define icon:auto-resize=64,48,32,16 compressed_favicon.ico
imagick cli
convert favicon.ico -define icon:auto-resize=64,48,32,16 compressed_favicon.ico
Portable Version KEYS: | |
P6Z3T-UYJC9-YAK3F-APN9M-6ZDSD | |
FGZPK-93CWX-Q33Y6-D5URV-YXC3X | |
9CZQX-9YAQA-PF33L-XVUQH-NSD48 | |
8RZ3L-H3Y5L-W2RY5-Z5M8N-C7Z2U | |
CCZNU-LW3LF-K9V2T-MYZFF-94667 | |
EWZM6-3W4UX-KH922-C96GK-VGBH2 | |
Standard Version KEYS: | |
4AZNW-S2YHE-LLMWM-J6EL8-7QKDL |
#!/bin/bash | |
# Removes old revisions of snaps | |
# CLOSE ALL SNAPS BEFORE RUNNING THIS | |
set -eu | |
LANG=C snap list --all | awk '/disabled/{print $1, $3}' | | |
while read snapname revision; do | |
snap remove "$snapname" --revision="$revision" | |
done |
/** | |
* Creates a read/writable property which returns a function set for write/set (assignment) | |
* and read/get access on a variable | |
* | |
* @param {Any} value initial value of the property | |
*/ | |
function createProperty(value) { | |
var _value = value; | |
/** |
/** | |
* If you have a website source bundled with webpack and are lucky to have a sourcemap nearby, | |
* then you are able to fully reconstruct original code + folders structure. | |
* Place this file at the root of project. | |
* Provide the path to sourcemap + the path to where you'd like to extract original codebase. | |
*/ | |
const fs = require('fs'); | |
const path = require('path'); | |
const sourceMap = require('source-map'); |
#!/bin/bash | |
# Useful for checking rtt to any sotname of interest. | |
# Since servers usually have balancers or dns balancing is in place it is helpful to test every ip. | |
IPS=$(host $1 | grep "has address" | awk '{ print $4 }') | |
REQ_AMOUNT=${2:-5} | |
# Loop through each IP address | |
for IP in $IPS; do |
import React from 'react';
/**
* @param {string} storageKey
* @param {*} initialState
* @param {number} expiration
*/
export const useStateWithLocalStorage = (storageKey, initialState, expiration) => {
const [value, setValue] = React.useState(() => {
#Check if Ideapad_laptop kernel module is loaded
lsmod | grep ideapad_laptop
# 1 on, 0 off
cat /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
echo 1 | sudo tee /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode
echo 0 | sudo tee /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode