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
| Плагины для онлайн просмотра: | |
| 1️⃣ Онлайн Stream: http://arkmv.ru/vod | |
| 2️⃣ Онлайн Prestige: https://bwa.to/plugins/prestige.js | |
| 3️⃣ Stream 2: http://llpp.in/v/vod.js | |
| 4️⃣ Онлайн Мод: https://nb557.github.io/plugins/online_mod.js | |
| 5️⃣ Онлайн MODS's: http://lampa.stream/modss |
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
| class ApplicationContextAwareSpringLiquibase : SpringLiquibase() { | |
| override fun setResourceLoader(resourceLoader: ResourceLoader) { | |
| super.setResourceLoader(resourceLoader) | |
| ApplicationContextAwareSpringLiquibase.resourceLoader = resourceLoader | |
| } | |
| companion object { | |
| private lateinit var resourceLoader: ResourceLoader |
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
| class LoggingClientHttpRequestDecorator(delegate: ClientHttpRequest) : ClientHttpRequestDecorator(delegate), Logging { | |
| companion object { | |
| val bufferFactory: DataBufferFactory = DefaultDataBufferFactory() | |
| } | |
| private fun decorateBody(body: Publisher<out DataBuffer>): Publisher<out DataBuffer?> { | |
| return Mono.from(body).doOnNext { | |
| this.log(it) | |
| } |
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
| chmod 4755 /usr/share/skypeforlinux/chrome-sandbox |
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
| pg_dump -i -h localhost -p 5432 -U postgres -d dbname -F c -b -v -f "~/db.bak" | |
| # -p, –port=PORT database server port number | |
| # -i, –ignore-version proceed even when server version mismatches | |
| # -h, –host=HOSTNAME database server host or socket directory | |
| # -U, –username=NAME connect as specified database user | |
| # -W, –password force password prompt (should happen automatically) | |
| # -d, –dbname=NAME connect to database name | |
| # -v, –verbose verbose mode | |
| # -F, –format=c|t|p output file format (custom, tar, plain text) | |
| # -c, –clean clean (drop) schema prior to create |
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
| iptables -t nat -N REDSOCKS | |
| iptables -t nat -A REDSOCKS -d 0.0.0.0/8 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 10.0.0.0/8 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 100.64.0.0/10 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 127.0.0.0/8 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 169.254.0.0/16 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 172.16.0.0/12 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 198.18.0.0/15 -j RETURN | |
| iptables -t nat -A REDSOCKS -d 224.0.0.0/4 -j RETURN |
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
| rabbitmqctl add_user user password | |
| rabbitmqctl set_user_tags user administrator | |
| rabbitmqctl set_permissions -p / user ".*" ".*" ".*" |

