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
| Jan Nalaskowski 2008-12-11 23:33:51 | |
| ========================================= | |
| http://web.archive.org/web/20120310203608/http://www.stosunkimiedzynarodowe.info/artykul,283,Kwestia_niepodleglosci_Wysp_Owczych | |
| Niedawne referendum przeprowadzone w Grenlandii ożywiło debatę na temat kwestii niepodległości Wysp Owczych. Sprawa ta powraca cyklicznie co pewien czas, jednak jej realność jest często podważana. | |
| Na archipelag składa się 18 wysp, z czego 17 jest zamieszkałych. Strategiczne położenie na północnowschodnim Atlantyku czyni z Wysp Owczych potencjalnie cennego sojusznika, ale i ważnego gracza w swoim regionie oraz w rejonie arktycznym. | |
| Prawdopodobnie już w VII i VIII wieku Wyspy służyły jako miejsce odosobnienia dla irlandzkich mnichów szukających samotności. Jednak coraz bardziej aktywni w tych rejonach Wikingowie doprowadzili do ustabilizowania się około IX wieku norweskiego osadnictwa. Wyspy Owcze włączone zostały do Królestwa Norwegii w roku 1035. Podobnie jak w przypadku Grenlandii, ziemie te uległy ro |
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' |