Skip to content

Instantly share code, notes, and snippets.

[
{
"name": "Heroes",
"children": [
{
"hero": "Spider-Man",
"name": "Peter Benjamin Parker",
"link": "http://marvel.com/characters/54/spider-man",
"img": "https://dl.dropboxusercontent.com/u/19954023/marvel_force_chart_img/top_spiderman.png",
"size": 40000
@ac1ra
ac1ra / faq_cache.md
Last active April 22, 2022 20:52
Automatic delete temporary files [caches] Windows 10

This tweak can fix if you have a low space on the disk. Tool can delete temporary files and other unimportant data to free out disk space on the autostart.

Create file *.dat and write paths:

DEL /F /S /Q /A "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Cache*"

DEL /F /S /Q /A "%SYSTEMROOT%\Temp*"

DEL /F /S /Q /A "%USERPROFILE%\AppData\Local\Temp*"

DEL /F /S /Q /A "%SYSTEMROOT%\SoftwareDistribution\Download*"

@ac1ra
ac1ra / 1-macOS-10.15-catalina-setup.md
Created July 9, 2020 10:20 — forked from kevinelliott/1-macOS-10.15-catalina-setup.md
macOS 10.15 Catalina Mostly-Automated Setup

To support my open-source work, consider adding me on Patreon.

macOS 10.15 Catalina Mostly-Automated Setup

An easy to refer to document for regularly setting up macOS 10.15 Catalina.

Controversy

The topic of recipe-based frequent fresh reinstalls of macOS is a controversial issue. Some people are against reinstalling macOS, citing that they have never had an issue with Apple provided upgrade installs.

@ac1ra
ac1ra / Firebase API(short)
Last active November 6, 2018 20:36
Важные методы API Firebase для обработки и проверки подлинности пользователей.
Важные методы API Firebase для обработки и проверки подлинности пользователей.
import Firebase
import FirebaseAuth
//Зарегистрироваться, войти и выйти из системы
//Создание аккаунта.
Auth.auth().createUser(withEmail: email, password: password) { (user, error) in
// ...