Skip to content

Instantly share code, notes, and snippets.

View fvieira's full-sized avatar

Francisco José Marques Vieira fvieira

View GitHub Profile
@fvieira
fvieira / gist:850b77095b9e875f4a89de7d31299c98
Created August 2, 2022 17:56
Netlify failed build, exit code 137, with npx process-top
6:52:27 PM: Build ready to start
6:52:29 PM: build-image version: d7b3dbfb0846505993c9a131894d1858074c90b4 (focal)
6:52:29 PM: build-image tag: v4.10.1
6:52:29 PM: buildbot version: f50214a1de5f04db9b59dcaff80e969673c77548
6:52:29 PM: Fetching cached dependencies
6:52:29 PM: Starting to download cache of 837.4MB
6:52:35 PM: Finished downloading cache in 6.190057561s
6:52:35 PM: Starting to extract cache
6:52:44 PM: Finished extracting cache in 8.466710587s
6:52:44 PM: Finished fetching cache in 14.753300267s
@fvieira
fvieira / gist:be3e156823f755f8a771dbf24d777ee8
Created August 1, 2022 20:25
Netlify successful build
12:36:20 PM: Waiting for other deploys from your team to complete. Check the queue: https://app.netlify.com/teams/strahil/builds
12:37:40 PM: Build ready to start
12:37:41 PM: build-image version: 0e2f4c52031ab562db66aec633308326e3b108d0 (focal)
12:37:41 PM: build-image tag: focal
12:37:41 PM: buildbot version: 17781eb43cf82ba1890150fe75c9ab9320d6a721
12:37:41 PM: Fetching cached dependencies
12:37:41 PM: Starting to download cache of 838.5MB
12:37:48 PM: Finished downloading cache in 6.999332136s
12:37:48 PM: Starting to extract cache
12:37:59 PM: Finished extracting cache in 10.930685376s
@fvieira
fvieira / gist:1e05a81c4e1933afa3a380bc2d4c6e37
Created August 1, 2022 20:23
Netlify failed build, exit code 137
9:01:48 PM: Build ready to start
9:01:55 PM: build-image version: d7b3dbfb0846505993c9a131894d1858074c90b4 (focal)
9:01:55 PM: build-image tag: v4.10.1
9:01:55 PM: buildbot version: f50214a1de5f04db9b59dcaff80e969673c77548
9:01:56 PM: Fetching cached dependencies
9:01:56 PM: Starting to download cache of 839.0MB
9:02:03 PM: Finished downloading cache in 7.259387385s
9:02:03 PM: Starting to extract cache
9:02:09 PM: Finished extracting cache in 6.238249649s
9:02:09 PM: Finished fetching cache in 13.599996243s
@fvieira
fvieira / cloudSettings
Last active April 1, 2020 22:44
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-04-01T20:36:56.177Z","extensionVersion":"v3.4.3"}
@fvieira
fvieira / .gitconfig
Last active April 2, 2020 00:36
My git config
[user]
name = Francisco Vieira
email = francisco@moscadigital.pt
[core]
editor = vi
excludesfile = ~/.gitignore
whitespace = trailing-space,space-before-tab
autocrlf = input
preloadindex = true
[color]
@fvieira
fvieira / ultimate-ut-cheat-sheet.md
Last active April 7, 2017 12:57 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@fvieira
fvieira / README.md
Last active December 17, 2015 06:09 — forked from evz/README.md
S3 Publisher for Hyde (static site generator written in Python)

How to use

  • Add the s3.py file to your project. As an example, put it inside a folder called publishers.
  • The folder where s3.py resides must be a Python package, so add an empty __init__.py file to that folder also.
  • Add the following configuration to your site.yaml and modify it as needed:
publisher:
    s3:
 type: publishers.s3.S3 # here, publishers is the folder where the s3.py file was placed