See the new site: https://postgresisenough.dev
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
| # Build musl libc | |
| $ git clone git://git.musl-libc.org/musl | |
| $ cd musl | |
| $ ./configure | |
| $ make | |
| $ sudo make install | |
| $ export PATH=$PATH:/usr/local/musl/bin/ | |
| # build libz for musl | |
| $ wget https://zlib.net/zlib-1.2.11.tar.gz |
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
| public class LinkHeader | |
| { | |
| public string FirstLink { get; set; } | |
| public string PrevLink { get; set; } | |
| public string NextLink { get; set; } | |
| public string LastLink { get; set; } | |
| public static LinkHeader LinksFromHeader(string linkHeaderStr) | |
| { | |
| LinkHeader linkHeader = null; |
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
| # Copyright © ISO/IEC 2015 | |
| # The following permission notice and disclaimer shall be included in all | |
| # copies of this XML schema ("the Schema"), and derivations of the Schema: | |
| # Permission is hereby granted, free of charge in perpetuity, to any | |
| # person obtaining a copy of the Schema, to use, copy, modify, merge and | |
| # distribute free of charge, copies of the Schema for the purposes of | |
| # developing, implementing, installing and using software based on the | |
| # Schema, and to permit persons to whom the Schema is furnished to do so, | |
| # subject to the following conditions: | |
| # THE SCHEMA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
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
| sudo apt-get update | |
| sudo apt-get install -y python-pip | |
| sudo apt-get install -y python-dev | |
| sudo apt-get install -y libzmq-dev | |
| sudo pip install virtualenv | |
| virtualenv venv | |
| source venv/bin/activate | |
| pip install locustio | |
| pip install pyzmq |