5343}
Updated:
package | bump type |
---|---|
"@f/fkit" | patch |
https://cdnme.s3.amazonaws.com/cdn/9924-d705-foralex.cfg | |
https://cdnme.s3.amazonaws.com/cdn/b72d-5523-CSGO.Config.Manager.exe | |
https://cdnme.s3.amazonaws.com/cdn/1c6b-8708-ALL-CSGO-CONFS.zip | |
https://gist.github.com/agrublev/7505d99dc13ced0a933eb78ea08e7061 | |
https://gist.github.com/agrublev/7505d99dc13ced0a933eb78ea08e7061 |
#!/bin/bash | |
# Check sudo. | |
# If credentials not already cached, ask for password and cache credentials. | |
# If already cached, increase sudo timeout by 5 min | |
sudo -v && exit 1 'Sudo access needed to execute this script' | |
# First update | |
echo "Updating apt list ...." |
const fixJsonStr=str=>str.replace(/(\s*?{\s*?|\s*?,\s*?)(['"])?([a-zA-Z0-9_]+)(['"])?:/g, '$1"$3":'); | |
let zzzz=fixJsonStr(`{ | |
"kettty": "", | |
asds: [], kggk:{}, | |
"ga": 222, | |
"sad": { | |
"zz": 0, | |
"as": false, | |
"gag": [] |
https://cdnme.s3.amazonaws.com/cdn/0afb-87db-Angel%20Reader-1.0.0.dmg | |
https://cdnme.s3.amazonaws.com/cdn/66c3-f080-Angel%20Reader.app.zip |
html { | |
/* Adjust font size */ | |
font-size: 100%; | |
-webkit-text-size-adjust: 100%; | |
/* Font varient */ | |
font-variant-ligatures: none; | |
-webkit-font-variant-ligatures: none; | |
/* Smoothing */ | |
text-rendering: optimizeLegibility; | |
-moz-osx-font-smoothing: grayscale; |
https://cdnme.s3.amazonaws.com/cdn/1c6b-8708-ALL-CSGO-CONFS.zip | |
https://github.com/lucaspalencia/cs-go | |
https://github.com/sbuggay/csgo-sync | |
https://www.razer.com/cortex | |
//gens | |
https://tools.dathost.net/#alpha=200/color=5/color_b=50/color_r=50/color_g=250/dot=0/gap=0/size=5/style=4/usealpha=1/thickness=0.5/outline=0/outline_draw=0 |
const uniqueElements = arr => [...new Set(arr)]; | |
const getType = v => | |
v === undefined | |
? "undefined" | |
: v === null | |
? "null" | |
: v.constructor.name.toLowerCase(); | |
const extendObject = (obj, obj2) => { |
#!/usr/bin/env node | |
const {exec} = require('child_process'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const semver = require('semver'); | |
const ora = require('ora'); | |
const chalk = require('chalk'); | |
const indent = require('detect-indent'); | |
const inquirer = require('inquirer'); |
var // should be a not so common char | |
// possibly one JSON does not encode | |
// possibly one encodeURIComponent does not encode | |
// right now this char is '~' but this might change in the future | |
specialChar = "~", | |
safeSpecialChar = "\\x" + ("0" + specialChar.charCodeAt(0).toString(16)).slice(-2), | |
escapedSafeSpecialChar = "\\" + safeSpecialChar, | |
specialCharRG = new RegExp(safeSpecialChar, "g"), | |
safeSpecialCharRG = new RegExp(escapedSafeSpecialChar, "g"), | |
safeStartWithSpecialCharRG = new RegExp("(?:^|([^\\\\]))" + escapedSafeSpecialChar), |