- add Retic repo
- yum install restic
add a Restic credential file to root
vim /root/.restic
From this [issue](https://github.com/puphpet/puphpet/issues/1025#issuecomment-157059174): | |
I know that this issue is closed, but as I spent a lot of time to understand what was going on, I made some researches and I can explain why this happen, and you can fix it. | |
Using git config core.autocrlf true can help, but not on a multi-developpers project. | |
This command has to be the same on each developper machine, and that's not always the case. | |
You have to use the .gitattributes provided in the puphpet archive and edit it as follow (carefull, this file need to be in your project root) | |
You also need to use an IDE that allow you to save/edit files as LF (like phpstorm). You can check the type of the file in the bottom right corner, in the status bar (you'll see LF or CRLF while a file is opened) |
//////// | |
// The vm module lets you run a string containing javascript code 'in | |
// a sandbox', where you specify a context of global variables that | |
// exist for the duration of its execution. This works more or less | |
// well, and if you're in control of the code that's running, and you | |
// have a reasonable protocol in mind// for how it expects a certain | |
// context to exist and interacts with it --- like, maybe a plug-in | |
// API for a program, with some endpoints defined for it that do | |
// useful domain-specific things --- your life can go smoothly. |
/keys.py | |
__pycache__/ | |
*.state | |
*.xz |
7695 https://www.tugraz.at/index.php?id=7695
Die Beglaubigung von Urkunden des Ausstellungslandes Ihrer Dokumente ist derzeit ausgesetzt. >
const fetch = require("node-fetch"); | |
async function main() { | |
const collectionToCheck = `0xed5af388653567af2f388e6224dc7c4b3241c544`; | |
const nftCollectionsAddress = `0x2f19f817bbf800b487b7f2e51f24ad5ea0222463`; | |
console.info( | |
`Is the collection ${collectionToCheck} in the NFT registry (${nftCollectionsAddress})?` | |
); | |
console.info( | |
await isCollectionRegistered(collectionToCheck, nftCollectionsAddress) |