This gist contains dumps of knowledge / facts indexed by vita - a wiki-powered knowledge graph.
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
.idea/ | |
env/ | |
*.swp |
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
#!/usr/bin/python | |
def get_iters_count(n): | |
i = 0 | |
while True: | |
i += 1 | |
# print(i, n) | |
if n == 1: | |
break |
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
node_modules/ | |
*.swp | |
screenshot.png |
For headless setup, SSH can be enabled by placing a file named ssh
, without any extension, onto the boot partition of
the SD card from another computer. When the Pi boots, it looks for the ssh file. If it is found, SSH is enabled and the
file is deleted. The content of the file does not matter; it could contain text, or nothing at all.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
env* | |
foto | |
_build |
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
#!/bin/bash | |
WIKI=$1 | |
DB_PARAMS=`dbparams.pl --name $WIKI --type slave` | |
echo "Removing broken comments redirects on ${WIKI} ..." | |
mysql $DB_PARAMS -e "select /* SUS-4813 */ page_id from querycache, page where qc_type = 'BrokenRedirects' and qc_title LIKE '%/@comment%' and page_title = qc_title and page_namespace = qc_namespace;" --skip-column-names --batch | tee /tmp/SUS-4813.pages | |
run_maintenance --db $WIKI --script="deleteBatch.php -u FANDOMbot -r SUS-4813 --by-id --listfile /tmp/SUS-4813.pages" | |
run_maintenance --db $WIKI --script='updateSpecialPages.php --only=BrokenRedirects' |
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
#!/usr/bin/env php | |
<?php | |
putenv('SERVER_ID=177'); | |
ini_set('display_errors', '1'); | |
######################################################################################### | |
require_once('/home/macbre/app/maintenance/commandLine.inc'); |