Skip to content

Instantly share code, notes, and snippets.

View DartPower's full-sized avatar
🎵
Planemov - Live at Studio Twenty One Club 18-10-2018

DartPower DartPower

🎵
Planemov - Live at Studio Twenty One Club 18-10-2018
View GitHub Profile
@DartPower
DartPower / DECORATE.sample.txt
Created July 24, 2020 23:31
Sample DECORATE
ACTOR NewZombieMan : ZombieMan replaces ZombieMan 10000
// ACTOR нужно писать всегда при создании любого объекта (актора).
// Название NewZombieMan говорит нам о названии моба. © Кэп
// Двоеточие говорит о наследственнмо акторе, с которого береться код. Код в данном акторе будет земенять тот код, который в наследственном акторе.
// Название наследственного актора. Должен существовать, иначе игра скажет Вам что такого актора нет.
// replaces говорит о полной замене всех на карте (например) данного вида на этот вид. Т.е. заменятся все зомбимены на этот.
// Название заменяемого объекта.
// DoomEdNum. Число для редактора карт. Чтобы можно было поставить как отдельного актора. Тут replaces может быть не так уж и обязателн.
{
Health 100 // Задаем жизнь как у игрока.
body
{
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@echo off
fastboot flash gpt deploy-gpt.img
pause
fastboot flash bootloader bootloader-sd.img
pause
fastboot flash uboot-env env.img
pause
fastboot reboot
pause
fastboot oem format
// SDpatch.cpp : Defines the entry point for the console application.
// by Costis. Copyright 2005.
// Ported to GNU/Linux by Daniel Thompson (Merlin).
//
// This is the source code for the SDpatch.exe program described in
// the install.txt documentation. Feel free to port it to any OS of
// your choice and send it to me for release!
//
@DartPower
DartPower / FreeMinecraftHostings.nfo
Created January 3, 2021 16:12
Free Minecraft Hosting List
================================================================================================
1. Server.Pro
https://server.pro/
================================================================================================
FREE PLAN:
] CPU: AMD Epyc 7351P - 2.4 GHz / 2.9 GHz (2 VCores)
] RAM: 1 GB
] Storage: 5 GB NVMe
] Regions: Canada - Montreal, France - Gravelines
@DartPower
DartPower / ListOfCosmosims
Last active September 19, 2024 19:54
Список классных космосимов и планетариев
Общее, Инфа, Мета.
https://github.com/orbitalindex/awesome-space
https://github.com/mbiesiad/awesome-astronomy
Свободные (Free/Open-Source)
[FlyCasual https://github.com/Sandrem/FlyCasual
[FreeOrion] https://www.freeorion.org/index.php/Main_Page
[Pioneer] https://github.com/pioneerspacesim/pioneer
[OOLite] http://www.oolite.org/
[Stellarium] https://stellarium.org/ru/
@DartPower
DartPower / _old_PS_Store.md
Created February 17, 2021 12:07
Links to access old PS Store

Between 21-28 October 2020, the PS Store got an overall redesign across the world in preparation for the PS5 launch. This redesign removed the possibility to purchase PS3, PS Vita and PSP content (games, DLC, themes, avatars, etc.) on the desktop and mobile versions of the store. Any previous Wishlist also has been removed on the new store. Now, the option to buy and download PS3, Vita and PSP content is via the console’s respective store.

However, it is still possible to access the previous desktop and mobile PS Store by entering specific link addresses. For example, if you have an US PSN account, enter the link to the old US store, sign in and you’re good to go. If you plan on buying legacy contents the easiest way, you should consider doing so before the access is definitely closed.

To access to the old download list, showing all your PS3, Vita, PS4 and other legacy contents, you need to enter the following link: https://store.playstation.com/xx-xx/download/list?smcid=psapp. Replace the ‘xx-xx’ part of t

@DartPower
DartPower / portainer_updater.sh
Last active June 14, 2021 23:40
Portainer update script
docker pull portainer/portainer-ce
docker stop portainer
docker rm portainer
docker run -d -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce