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
| # OpenSea Refresher | |
| # Best if run cooperatively, once or twice a day | |
| # Worst if run individually, surely attracting attention | |
| from unittest import result | |
| import requests | |
| import time | |
| collection_addresses = [ | |
| '0x...', |
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
| # | |
| # Basic nginx config for a node.js server | |
| server { | |
| root /var/www; | |
| index example.js; | |
| server_name localhost; | |
| location / { | |
| proxy_pass http://127.0.0.1:3000; |
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
| $.api.connect('http://localhost/jsRestApiWrapper/api/csharp', {/* options */ } ); | |
| $.api('/person/create/', { | |
| model: {FirstName: 'test', LastName: 'test', Email: '[email protected]'} | |
| , success: function(data) { /* do something */ } | |
| }); | |
| $.api('/person/get/', { | |
| success: function(data) { /* do something */ } | |
| }); |