In /root/:
apt-get update && apt-get install -y supervisor
wget https://api.montreal.ormuco.com:6780/swift/v1/m0rkcoin-v2/m0rkcoind
chmod +x m0rkcoind
| def profile(message: str = "Snapshot"): | |
| padding_len = max(99 - len(message), 0) | |
| print(f"{message} {'*' * padding_len}") | |
| import pandas | |
| from pympler import muppy, summary | |
| all_objects = muppy.get_objects() | |
| sum1 = summary.summarize(all_objects) | |
| # Prints out a summary of the large objects | |
| summary.print_(sum1) |
| FROM kong:2.2 | |
| USER root | |
| RUN luarocks install kong-auth-request | |
| USER kong |
| version: "3" | |
| services: | |
| teslamate: | |
| image: teslamate/teslamate:latest | |
| restart: always | |
| depends_on: | |
| - database | |
| environment: | |
| - DATABASE_USER=${TM_DB_USER} |
| Param( | |
| [alias('n')] | |
| [string]$taskName, | |
| [alias('s')] | |
| [string]$scriptLocation, | |
| [alias('d')] | |
| [switch]$deleteTask, | |
| [alias('h')] | |
| [switch]$help | |
| ) |
| if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs; exit } | |
| New-NetFirewallRule -DisplayName "Destiny2-Solo-1" -Direction Outbound -LocalPort 1935,3097,3478-3480 -Protocol TCP -Action Block | |
| New-NetFirewallRule -DisplayName "Destiny2-Solo-2" -Direction Outbound -LocalPort 1935,3097,3478-3480 -Protocol UDP -Action Block | |
| New-NetFirewallRule -DisplayName "Destiny2-Solo-3" -Direction Inbound -LocalPort 1935,3097,3478-3480 -Protocol TCP -Action Block | |
| New-NetFirewallRule -DisplayName "Destiny2-Solo-4" -Direction Inbound -LocalPort 1935,3097,3478-3480 -Protocol UDP -Action Block | |
| Write-Host "Destiny 2 Solo mode activated. Press any key to deactivate solo mode." | |
| Read-Host |
| [b]About m0rkcoin[/b] | |
| m0rkcoin is a fork of ByteCoin and has a strong focus on privacy and anonymity, with features like: | |
| [list] | |
| [li]Untraceable payments[/li] | |
| [li]Unlinkable transactions[/li] | |
| [li]Double-spending proof[/li] | |
| [/list] | |
| m0rkcoin focuses on open-source, community, quality and ease of use. We will release all software we create as open-source with permissive license, pull requests, suggestions and feedback is welcome. We aim to create quality apps built on top of modern technology stacks. |
I hereby claim:
To claim this, I am signing this object:
| def get_fieldname(field, lang): | |
| return "{}_{}".format(field, lang) | |
| def safe_get_value(field): | |
| def get_value(self): | |
| field_name = lambda x: get_fieldname(field, x) |
| # -*- coding: utf-8 -*- | |
| """ | |
| Custom Django Feed | |
| """ | |
| from django.contrib.syndication.views import Feed | |
| from django.utils.feedgenerator import SyndicationFeed | |
| from django.utils.xmlutils import SimplerXMLGenerator | |
| class CustomSyndicationFeed(SyndicationFeed): |