Git Product home page Git Product logo

simplefolio's Introduction

Simplefolio ⚡️ GitHub GitHub stars GitHub forks

A minimal portfolio template for Developers!

Simplefolio

Features

⚡️ Modern UI Design + Reveal Animations
⚡️ One Page Layout
⚡️ Styled with Bootstrap v4.3 + Custom SCSS
⚡️ Fully Responsive
⚡️ Valid HTML5 & CSS3
⚡️ Optimized with Parcel
⚡️ Well organized documentation

To view the demo: click here


Why do you need a portfolio? ☝️

  • Professional way to showcase your work
  • Increases your visibility and online presence
  • Shows you’re more than just a resume

Getting Started 🚀

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites 📋

You'll need Git and Node.js (which comes with NPM) installed on your computer.

Also, you can use Yarn instead of NPM ☝️


How To Use 🔧

From your command line, first clone Simplefolio:

# Clone the repository
$ git clone https://github.com/cobiwave/simplefolio

# Move into the repository
$ cd simplefolio

# Remove the current origin repository
$ git remote remove origin

After that, you can install the dependencies either using NPM or Yarn.

Using NPM: Simply run the below commands.

# 2022 Update - Fix Dependencies
$ npm audit fix
$ npm i @parcel/transformer-sass

# Install dependencies
$ npm install

# Start the development server
$ npm start

Using Yarn: Be aware of that you'll need to delete the package-lock.json file before executing the below commands.

# Install dependencies
$ yarn

# Start the development server
$ yarn start

NOTE: If your run into issues installing the dependencies with NPM, use this below command:

# Install dependencies with all permissions
$ sudo npm install --unsafe-perm=true --allow-root

Once your server has started, go to this url http://localhost:1234/ to see the portfolio locally. It should look like the below screenshot.

Simplefolio


Template Instructions:

Step 1 - STRUCTURE

Go to /src/index.html and put your information, there are 5 sections:

(1) Hero Section

  • On .hero-title, put your custom portfolio title.
  • On .hero-cta, put your custom button label.
<!-- **** Hero Section **** -->
<section id="hero" class="jumbotron">
  <div class="container">
    <h1 class="hero-title load-hidden">
      Hi, my name is <span class="text-color-main">Your Name</span>
      <br />
      I'm the Unknown Developer.
    </h1>
    <p class="hero-cta load-hidden">
      <a rel="noreferrer" class="cta-btn cta-btn--hero" href="#about">
        Know more
      </a>
    </p>
  </div>
</section>
<!-- /END Hero Section -->

(2) About Section

  • On <img> tag, fill the src property with your profile picture path, your picture must be located inside /src/assets/ folder.
  • On <p> tag with class name .about-wrapper__info-text, include information about you, I recommend to put 2 paragraphs in order to work well and a maximum of 3 paragraphs.
  • On last <a> tag, include your CV (.pdf) path on href property, your resume CV must be located inside /src/assets/ folder.
<!-- **** About Section **** -->
<section id="about">
  <div class="container">
    <h2 class="section-title load-hidden">About me</h2>
    <div class="row about-wrapper">
      <div class="col-md-6 col-sm-12">
        <div class="about-wrapper__image load-hidden">
          <img
            alt="Profile Image"
            class="img-fluid rounded shadow-lg"
            height="auto"
            width="300px"
            src="assets/profile.jpg"
            alt="Profile Image"
          />
        </div>
      </div>
      <div class="col-md-6 col-sm-12">
        <div class="about-wrapper__info load-hidden">
          <p class="about-wrapper__info-text">
            This is where you can describe about yourself. The more you describe
            about yourself, the more chances you can!
          </p>
          <p class="about-wrapper__info-text">
            Extra Information about you! like hobbies and your goals.
          </p>
          <span class="d-flex mt-3">
            <a
              rel="noreferrer"
              target="_blank"
              class="cta-btn cta-btn--resume"
              href="assets/resume.pdf"
            >
              View Resume
            </a>
          </span>
        </div>
      </div>
    </div>
  </div>
</section>
<!-- /END About Section -->

(3) Projects Section

  • Each project lives inside a row.
  • On <h3> tag with class name .project-wrapper__text-title, include your project title.
  • On <p> tag with loremp ipsum text, include your project description.
  • On first <a> tag, put your project url on href property.
  • On second <a> tag, put your project repository url on href property.

  • Inside <div> tag with class name .project-wrapper__image, put your project image url on the src of the <img> and put again your project url in the href property of the <a> tag.
  • Recommended size for project image (1366 x 767), your project image must be located inside /src/assets/ folder.
<!-- **** Projects Section **** -->
<section id="projects">
  ...
  <!-- Notice: each .row is a project -->
  <div class="row">
    <div class="col-lg-4 col-sm-12">
      <div class="project-wrapper__text load-hidden">
        <h3 class="project-wrapper__text-title">Project Title</h3>
        <div>
          <p class="mb-4">
            Lorem ipsum dolor sit, amet consectetur adipisicing elit. Excepturi
            neque, ipsa animi maiores repellendus distinctio aperiam earum dolor
            voluptatum consequatur blanditiis inventore debitis fuga numquam
            voluptate ex architecto itaque molestiae.
          </p>
        </div>
        <a
          rel="noreferrer"
          target="_blank"
          class="cta-btn cta-btn--hero"
          href="#!"
        >
          See Live
        </a>
        <a
          rel="noreferrer"
          target="_blank"
          class="cta-btn text-color-main"
          href="#!"
        >
          Source Code
        </a>
      </div>
    </div>
    <div class="col-lg-8 col-sm-12">
      <div class="project-wrapper__image load-hidden">
        <a rel="noreferrer" href="#!" target="_blank">
          <div
            data-tilt
            data-tilt-max="4"
            data-tilt-glare="true"
            data-tilt-max-glare="0.5"
            class="thumbnail rounded js-tilt"
          >
            <img
              alt="Project Image"
              class="img-fluid"
              src="assets/project.jpg"
            />
          </div>
        </a>
      </div>
    </div>
  </div>
  <!-- /END Project -->
  ...
</section>

(4) Contact Section

  • On <p> tag with class name .contact-wrapper__text, include some custom call-to-action message.
  • On <a> tag, put your email address on href property.
<!-- **** Contact Section **** -->
<section id="contact">
  <div class="container">
    <h2 class="section-title">Contact</h2>
    <div class="contact-wrapper load-hidden">
      <p class="contact-wrapper__text">[Put your call to action here]</p>
      <a
        rel="noreferrer"
        target="_blank"
        class="cta-btn cta-btn--resume"
        href="mailto:[email protected]"
        >Call to Action</a
      >
    </div>
  </div>
</section>
<!-- /END Contact Section -->

(5) Footer Section

  • Put your Social Media URL on each href attribute of the <a> tags.
  • If you an additional Social Media account different than Twitter, Linkedin or GitHub, then go to Font Awesome Icons and search for the icon's class name you are looking.
  • You can delete or add as many <a> tags your want.
<footer class="footer navbar-static-bottom">
  ...
  <div class="social-links">
    <a href="#!" target="_blank">
      <i class="fa fa-twitter fa-inverse"></i>
    </a>
    <a href="#!" target="_blank">
      <i class="fa fa-linkedin fa-inverse"></i>
    </a>
    <a href="#!" target="_blank">
      <i class="fa fa-github fa-inverse"></i>
    </a>
  </div>
  ...
</footer>

Step 2 - STYLES

Change the color theme of the website - (choose 2 colors to create a gradient)

Go to /src/sass/abstracts/_variables.scss and only change the values for this variables $main-color and $secondary-color with your prefered HEX color. If you want to get some gradients inspiration I highly recommend you to check this website UI Gradient

// Default values
$main-color: #02aab0;
$secondary-color: #00cdac;

Deployment 📦

Once you finish your setup. You need to put your website online!

I highly recommend to use Netlify because it is super easy.

Others versions 👥

Gatsby Simplefolio by Jacobo Martinez
Ember.js Simplefolio by Michael Serna

Technologies used 🛠️

Authors

Status

Netlify Status

License 📄

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments 🎁

I was motivated to create this project because I wanted to contribute on something useful for the dev community, thanks to ZTM Community and Andrei

simplefolio's People

Contributors

aayushjhaa avatar anshumalivfx avatar cobiwave avatar cristianbyte avatar gagansday avatar gjaiswal108 avatar isaiah-hamilton avatar jacobo-martinez avatar jensdufour avatar jlangenhagen avatar krit-s avatar kunalkatre1 avatar mohdrishin avatar multidimensionalinteractive avatar papstchaka avatar pewriebontal avatar snasser97 avatar soulcoder65 avatar tiagochicoo avatar wschwab avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

simplefolio's Issues

Npm Install Errors?

I can't seem to npm install the dependencies not sure whats going on here? I deleted everything and tried cloning, removing the origin remote then running npm install and same errors. Not, sure whats going on here. Just wanted to let you know this is happening.

Here are my versions;
Git: version 2.31.1.windows.1
Node: v14.16.1
Npm: 7.11.1

The errors when running npm install

0299f005cf0211ceb028a798c96377ad

5943dfc11ece16f3ea054c7ca08f8d20

npm run build and deployment error

some parts of the projects are having conflicts because the versions are incompatible with each other, hence the deployemnt on netlify also fails

Heroku deployment

hey Jacob,

first of all beautiful portfolio template, I
Screenshot (79)
badly needed this. But i am having issue deploying to Heroku pls give me the solution asap. The more detailed solution would be helpful

When i try to deploy the application I am getting this error. it is showing build script returned non-zero code: 1

3:11:01 PM: Build ready to start
3:11:03 PM: build-image version: 30f629161c0736b1a3ecd8b418e5eeffab5c0faf
3:11:03 PM: build-image tag: v3.3.14
3:11:03 PM: buildbot version: 960d989224ecbd0e01be03c5f7dffe3d8f543e02
3:11:03 PM: Fetching cached dependencies
3:11:03 PM: Failed to fetch cache, continuing with build
3:11:03 PM: Starting to prepare the repo for build
3:11:04 PM: No cached dependencies found. Cloning fresh repo
3:11:04 PM: git clone https://github.com/GeekRoot999/portfolio
3:11:04 PM: Preparing Git Reference refs/heads/master
3:11:06 PM: Starting build script
3:11:06 PM: Installing dependencies
3:11:07 PM: Downloading and installing node v10.21.0...
3:11:07 PM: Downloading https://nodejs.org/dist/v10.21.0/node-v10.21.0-linux-x64.tar.xz...
3:11:07 PM: Computing checksum with sha256sum
3:11:07 PM: Checksums matched!
3:11:10 PM: Now using node v10.21.0 (npm v6.14.4)
3:11:10 PM: Started restoring cached build plugins
3:11:10 PM: Finished restoring cached build plugins
3:11:10 PM: Attempting ruby version 2.6.2, read from environment
3:11:11 PM: Using ruby version 2.6.2
3:11:12 PM: Using PHP version 5.6
3:11:12 PM: 5.2 is already installed.
3:11:12 PM: Using Swift version 5.2
3:11:12 PM: Started restoring cached node modules
3:11:12 PM: Finished restoring cached node modules
3:11:12 PM: Installing NPM modules using NPM version 6.14.4
3:11:24 PM: > [email protected] install /opt/build/repo/node_modules/node-sass
3:11:24 PM: > node scripts/install.js
3:11:25 PM: Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/linux-x64-64_binding.node
3:11:25 PM: Download complete
3:11:25 PM: Binary saved to /opt/build/repo/node_modules/node-sass/vendor/linux-x64-64/binding.node
3:11:25 PM: Caching binary to /opt/buildhome/.npm/node-sass/4.14.1/linux-x64-64_binding.node
3:11:26 PM: > [email protected] postinstall /opt/build/repo/node_modules/node-sass
3:11:26 PM: > node scripts/build.js
3:11:26 PM: Binary found at /opt/build/repo/node_modules/node-sass/vendor/linux-x64-64/binding.node
3:11:26 PM: Testing binary
3:11:26 PM: Binary is fine
3:11:27 PM: npm
3:11:27 PM: WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/webpack-dev-server/node_modules/fsevents):
3:11:27 PM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
3:11:27 PM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack-chokidar2/node_modules/fsevents):
3:11:27 PM: npm
3:11:27 PM: WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
3:11:27 PM: npm
3:11:27 PM: WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
3:11:27 PM: npm WARN
3:11:27 PM: notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
3:11:27 PM: added 1000 packages from 536 contributors and audited 1003 packages in 13.963s
3:11:27 PM: 36 packages are looking for funding
3:11:27 PM: run npm fund for details
3:11:27 PM: found 0 vulnerabilities
3:11:27 PM: NPM modules installed
3:11:27 PM: Started restoring cached go cache
3:11:27 PM: Finished restoring cached go cache
3:11:27 PM: go version go1.12 linux/amd64
3:11:27 PM: go version go1.12 linux/amd64
3:11:27 PM: Installing missing commands
3:11:27 PM: Verify run directory
3:11:29 PM: ​
3:11:29 PM: ┌─────────────────────────────┐
3:11:29 PM: │ Netlify Build │
3:11:29 PM: └─────────────────────────────┘
3:11:29 PM: ​
3:11:29 PM: ❯ Version
3:11:29 PM: @netlify/build 1.0.14
3:11:29 PM: ​
3:11:29 PM: ❯ Flags
3:11:29 PM: mode: buildbot
3:11:29 PM: ​
3:11:29 PM: ❯ Current directory
3:11:29 PM: /opt/build/repo
3:11:29 PM: ​
3:11:29 PM: ❯ Config file
3:11:29 PM: No config file was defined: using default values.
3:11:29 PM: ​
3:11:29 PM: ❯ Context
3:11:29 PM: production
3:11:29 PM: ​
3:11:29 PM: ┌────────────────────────────────┐
3:11:29 PM: │ 1. Build command from settings │
3:11:29 PM: └────────────────────────────────┘
3:11:29 PM: ​
3:11:29 PM: $ npm run build
3:11:29 PM: > [email protected] build /opt/build/repo
3:11:29 PM: > webpack --config webpack.prod.js
3:11:31 PM: Insufficient number of arguments or no entry found.
3:11:31 PM: Alternatively, run 'webpack(-cli) --help' for usage info.
3:11:31 PM: Hash: c97f842da7149f7a2076
3:11:31 PM: Version: webpack 4.43.0
3:11:31 PM: Time: 119ms
3:11:31 PM: Built at: 06/05/2020 9:41:31 AM
3:11:31 PM: ERROR in Entry module not found: Error: Can't resolve './src/index.js' in '/opt/build/repo'
3:11:31 PM: ERROR in Entry module not found: Error: Can't resolve './src/vendor.js' in '/opt/build/repo'
3:11:31 PM: ERROR in Error: Child compilation failed:
3:11:31 PM: Entry module not found: Error: Can't resolve '/opt/build/repo/src/template.htm l' in '/opt/build/repo':
3:11:31 PM: Error: Can't resolve '/opt/build/repo/src/template.html' in '/opt/build/repo'
3:11:31 PM: - compiler.js:79 childCompiler.runAsChild
3:11:31 PM: [repo]/[html-webpack-plugin]/lib/compiler.js:79:16
3:11:31 PM: - Compiler.js:343 compile
3:11:31 PM: [repo]/[webpack]/lib/Compiler.js:343:11
3:11:31 PM: - Compiler.js:681 hooks.afterCompile.callAsync.err
3:11:31 PM: [repo]/[webpack]/lib/Compiler.js:681:15
3:11:31 PM: - Hook.js:154 AsyncSeriesHook.lazyCompileHook
3:11:31 PM: [repo]/[tapable]/lib/Hook.js:154:20
3:11:31 PM: - Compiler.js:678 compilation.seal.err
3:11:31 PM: [repo]/[webpack]/lib/Compiler.js:678:31
3:11:31 PM: - Hook.js:154 AsyncSeriesHook.lazyCompileHook
3:11:31 PM: [repo]/[tapable]/lib/Hook.js:154:20
3:11:31 PM: - Compilation.js:1423 hooks.optimizeAssets.callAsync.err
3:11:31 PM: [repo]/[webpack]/lib/Compilation.js:1423:35
3:11:31 PM: - Hook.js:154 AsyncSeriesHook.lazyCompileHook
3:11:31 PM: [repo]/[tapable]/lib/Hook.js:154:20
3:11:31 PM: - Compilation.js:1414 hooks.optimizeChunkAssets.callAsync.err
3:11:31 PM: [repo]/[webpack]/lib/Compilation.js:1414:32
3:11:31 PM: - index.js:321 taskRunner.run
3:11:31 PM: [repo]/[terser-webpack-plugin]/dist/index.js:321:9
3:11:31 PM: - TaskRunner.js:48 TaskRunner.run
3:11:31 PM: [repo]/[terser-webpack-plugin]/dist/TaskRunner.js:48:7
3:11:31 PM: - index.js:227 TerserPlugin.optimizeFn
3:11:31 PM: [repo]/[terser-webpack-plugin]/dist/index.js:227:18
3:11:31 PM: - next_tick.js:68 process._tickCallback
3:11:31 PM: internal/process/next_tick.js:68:7
3:11:31 PM:
3:11:31 PM: Child html-webpack-plugin for "index.html":
3:11:31 PM: ERROR in Entry module not found: Error: Can't resolve '/opt/build/repo/src/template.html' in '/opt/build/repo'
3:11:31 PM: npm
3:11:31 PM: ERR! code ELIFECYCLE
3:11:31 PM: npm
3:11:31 PM: ERR! errno 2
3:11:31 PM: npm
3:11:31 PM: ERR! [email protected] build: webpack --config webpack.prod.js
3:11:31 PM: npm
3:11:31 PM: ERR! Exit status 2
3:11:31 PM: npm
3:11:31 PM: ERR!
3:11:31 PM: npm
3:11:31 PM: ERR! Failed at the [email protected] build script.
3:11:31 PM: npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
3:11:31 PM: npm
3:11:31 PM: ERR! A complete log of this run can be found in:
3:11:31 PM: npm ERR! /opt/buildhome/.npm/_logs/2020-06-05T09_41_31_287Z-debug.log
3:11:31 PM: ​
3:11:31 PM: ┌─────────────────────────────┐
3:11:31 PM: │ "build.command" failed │
3:11:31 PM: └─────────────────────────────┘
3:11:31 PM: ​
3:11:31 PM: Error message
3:11:31 PM: Command failed with exit code 2: npm run build
3:11:31 PM: ​
3:11:31 PM: Error location
3:11:31 PM: In Build command from settings:
3:11:31 PM: npm run build
3:11:31 PM: ​
3:11:31 PM: Resolved config
3:11:31 PM: build:
3:11:31 PM: command: npm run build
3:11:31 PM: publish: /opt/build/repo/dist
3:11:31 PM: Caching artifacts
3:11:31 PM: Started saving node modules
3:11:31 PM: Finished saving node modules
3:11:31 PM: Started saving build plugins
3:11:31 PM: Finished saving build plugins
3:11:31 PM: Started saving pip cache
3:11:31 PM: Finished saving pip cache
3:11:31 PM: Started saving emacs cask dependencies
3:11:31 PM: Finished saving emacs cask dependencies
3:11:31 PM: Started saving maven dependencies
3:11:31 PM: Finished saving maven dependencies
3:11:31 PM: Started saving boot dependencies
3:11:31 PM: Finished saving boot dependencies
3:11:31 PM: Started saving go dependencies
3:11:31 PM: Finished saving go dependencies
3:11:35 PM: Error running command: Build script returned non-zero exit code: 1
3:11:35 PM: Failing build: Failed to build site
3:11:35 PM: Failed during stage 'building site': Build script returned non-zero exit code: 1
3:11:35 PM: Finished processing build request in 31.641266965s

netlify build issue

11:12:52 PM: Build ready to start
11:12:54 PM: build-image version: 653805ca4a64301556e56dc4b321ef8fc20cbb7c
11:12:54 PM: build-image tag: v3.8.2
11:12:54 PM: buildbot version: 27121fae4d1b3a5c621e9bbd5ca8c7f99e19f330
11:12:54 PM: Fetching cached dependencies
11:12:54 PM: Failed to fetch cache, continuing with build
11:12:54 PM: Starting to prepare the repo for build
11:12:54 PM: No cached dependencies found. Cloning fresh repo
11:12:54 PM: git clone https://github.com/Ayushman67/portfolio-site
11:12:55 PM: Preparing Git Reference refs/heads/main
11:12:56 PM: Parsing package.json dependencies
11:12:56 PM: Different publish path detected, going to use the one specified in the Netlify configuration file: 'dist' versus 'dist/' in the Netlify UI
11:12:57 PM: Starting build script
11:12:57 PM: Installing dependencies
11:12:57 PM: Python version set to 2.7
11:12:58 PM: v12.18.0 is already installed.
11:12:58 PM: Now using node v12.18.0 (npm v6.14.4)
11:12:59 PM: Started restoring cached build plugins
11:12:59 PM: Finished restoring cached build plugins
11:12:59 PM: Attempting ruby version 2.7.2, read from environment
11:13:00 PM: Using ruby version 2.7.2
11:13:00 PM: Using PHP version 5.6
11:13:00 PM: Started restoring cached node modules
11:13:00 PM: Finished restoring cached node modules
11:13:01 PM: Installing NPM modules using NPM version 6.14.4
11:13:03 PM: npm WARN deprecated [email protected]: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1
11:13:03 PM: npm WARN deprecated [email protected]: request has been deprecated, see request/request#3142
11:13:04 PM: npm WARN deprecated [email protected]: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
11:13:05 PM: npm WARN deprecated [email protected]: this library is no longer supported
11:13:05 PM: npm WARN deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
11:13:06 PM: npm WARN deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
11:13:07 PM: npm WARN deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
11:13:10 PM: npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
11:13:10 PM: npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
11:13:20 PM: > [email protected] install /opt/build/repo/node_modules/node-sass
11:13:20 PM: > node scripts/install.js
11:13:21 PM: Downloading binary from https://github.com/sass/node-sass/releases/download/v6.0.1/linux-x64-72_binding.node
11:13:21 PM: Download complete
11:13:21 PM: Binary saved to /opt/build/repo/node_modules/node-sass/vendor/linux-x64-72/binding.node
11:13:21 PM: Caching binary to /opt/buildhome/.npm/node-sass/6.0.1/linux-x64-72_binding.node
11:13:21 PM: > [email protected] postinstall /opt/build/repo/node_modules/node-sass
11:13:21 PM: > node scripts/build.js
11:13:22 PM: Binary found at /opt/build/repo/node_modules/node-sass/vendor/linux-x64-72/binding.node
11:13:22 PM: Testing binary
11:13:22 PM: Binary is fine
11:13:22 PM: npm notice created a lockfile as package-lock.json. You should commit this file.
11:13:22 PM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.2.7 (node_modules/chokidar/node_modules/fsevents):
11:13:22 PM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
11:13:22 PM: npm WARN [email protected] requires a peer of webpack@^4.0.0 but none is installed. You must install peer dependencies yourself.
11:13:22 PM: added 753 packages from 476 contributors and audited 755 packages in 20.854s
11:13:23 PM: 62 packages are looking for funding
11:13:23 PM: run npm fund for details
11:13:23 PM: found 1 moderate severity vulnerability
11:13:23 PM: run npm audit fix to fix them, or npm audit for details
11:13:23 PM: NPM modules installed
11:13:23 PM: Started restoring cached go cache
11:13:23 PM: Finished restoring cached go cache
11:13:23 PM: go version go1.14.4 linux/amd64
11:13:23 PM: go version go1.14.4 linux/amd64
11:13:23 PM: Installing missing commands
11:13:23 PM: Verify run directory
11:13:24 PM: ​
11:13:24 PM: ────────────────────────────────────────────────────────────────
11:13:24 PM: Netlify Build
11:13:24 PM: ────────────────────────────────────────────────────────────────
11:13:24 PM: ​
11:13:24 PM: ❯ Version
11:13:24 PM: @netlify/build 17.9.2
11:13:24 PM: ​
11:13:24 PM: ❯ Flags
11:13:24 PM: baseRelDir: true
11:13:24 PM: deployId: 610d749cb5d12cf6ca5f5bb8
11:13:24 PM: ​
11:13:24 PM: ❯ Current directory
11:13:24 PM: /opt/build/repo
11:13:24 PM: ​
11:13:24 PM: ❯ Config file
11:13:24 PM: No config file was defined: using default values.
11:13:24 PM: ​
11:13:24 PM: ❯ Context
11:13:24 PM: production
11:13:24 PM: ​
11:13:24 PM: ────────────────────────────────────────────────────────────────
11:13:24 PM: 1. Build command from Netlify app
11:13:24 PM: ────────────────────────────────────────────────────────────────
11:13:24 PM: ​
11:13:24 PM: $ npm run build
11:13:24 PM: > [email protected] build /opt/build/repo
11:13:24 PM: > webpack --config webpack.prod.js
11:13:26 PM: (node:1350) [DEP_WEBPACK_COMPILATION_OPTIMIZE_CHUNK_ASSETS] DeprecationWarning: optimizeChunkAssets is deprecated (use Compilation.hooks.processAssets instead and use one of Compilation.PROCESS_ASSETS_STAGE_* as stage option)
11:13:37 PM: assets by status 571 KiB [cached] 11 assets
11:13:37 PM: Entrypoint vendor = vendor.6faef603b0d23fa3f710.bundle.js
11:13:37 PM: Entrypoint main = main.899af159c8cacda1b776.css main.0bb5a33f16ad2a8147de.bundle.js 1 auxiliary asset
11:13:37 PM: orphan modules 299 KiB [orphan] 67 modules
11:13:37 PM: runtime modules 1.72 KiB 5 modules
11:13:37 PM: cacheable modules 502 KiB (javascript) 166 KiB (css/mini-extract)
11:13:37 PM: javascript modules 502 KiB
11:13:37 PM: modules by path ./src/ 209 KiB
11:13:37 PM: ./src/vendor.js + 56 modules 206 KiB [built] [code generated]
11:13:37 PM: ./src/index.js + 6 modules 2.54 KiB [built] [code generated]
11:13:37 PM: modules by path ./node_modules/ 293 KiB
11:13:37 PM: ./node_modules/jquery/dist/jquery.js 282 KiB [built] [code generated]
11:13:37 PM: ./node_modules/tilt.js/src/tilt.jquery.js 11.5 KiB [built] [code generated]
11:13:37 PM: modules by path ./src/style/ 166 KiB
11:13:37 PM: css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style/main.scss 72 bytes [built] [code generated]
11:13:37 PM: css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style/main.scss (1) 166 KiB [built] [code generated]
11:13:37 PM: ERROR in Error: Child compilation failed:
11:13:37 PM: Module not found: Error: Can't resolve './assets/Karkinos.jpg' in '/opt/build/ repo/src'
ModuleNotFoundError: Module not found: Error: Can't resolve './assets/Karkinos .jpg' in '/opt/build/repo/src'
at /opt/build/repo/node_modules/webpack/lib/Compilation.js:1773:28
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:811:13
11:13:37 PM: at eval (eval at create (/opt/build/repo/node_modules/tapable/lib/HookCode Factory.js:33:10), :8:1)
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:286:22
11:13:37 PM: at eval (eval at create (/opt/build/repo/node_modules/tapable/lib/HookCode Factory.js:33:10), :7:1)
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:442:22
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:124:11
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:673:25
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:882:8
11:13:37 PM: at /opt/build/repo/node_modules/webpack/lib/NormalModuleFactory.js:1002:5
11:13:37 PM: - Compilation.js:1773
11:13:37 PM: [repo]/[webpack]/lib/Compilation.js:1773:28
11:13:37 PM: - NormalModuleFactory.js:811
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:811:13
11:13:37 PM: - NormalModuleFactory.js:286
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:286:22
11:13:37 PM: - NormalModuleFactory.js:442
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:442:22
11:13:37 PM: - NormalModuleFactory.js:124
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:124:11
11:13:37 PM: - NormalModuleFactory.js:673
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:673:25
11:13:37 PM: - NormalModuleFactory.js:882
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:882:8
11:13:37 PM: - NormalModuleFactory.js:1002
11:13:37 PM: [repo]/[webpack]/lib/NormalModuleFactory.js:1002:5
11:13:37 PM: - child-compiler.js:169
11:13:37 PM: [repo]/[html-webpack-plugin]/lib/child-compiler.js:169:18
11:13:37 PM: - Compiler.js:548
11:13:37 PM: [repo]/[webpack]/lib/Compiler.js:548:11
11:13:37 PM: - Compiler.js:1118
11:13:37 PM: [repo]/[webpack]/lib/Compiler.js:1118:17
11:13:37 PM: - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync]
11:13:37 PM: [repo]/[tapable]/lib/Hook.js:18:14
11:13:37 PM: - Compiler.js:1114
11:13:37 PM: [repo]/[webpack]/lib/Compiler.js:1114:33
11:13:37 PM: - Compilation.js:2254 finalCallback
11:13:37 PM: [repo]/[webpack]/lib/Compilation.js:2254:11
11:13:37 PM: - Compilation.js:2545
11:13:37 PM: [repo]/[webpack]/lib/Compilation.js:2545:11
11:13:37 PM: - Hook.js:18 Hook.CALL_ASYNC_DELEGATE [as _callAsync]
11:13:37 PM: [repo]/[tapable]/lib/Hook.js:18:14
11:13:37 PM:
11:13:37 PM: 1 ERROR in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details)
11:13:37 PM: webpack 5.49.0 compiled with 2 errors in 11188 ms
11:13:37 PM: npm ERR! code ELIFECYCLE
11:13:37 PM: npm ERR! errno 1
11:13:37 PM: npm ERR! [email protected] build: webpack --config webpack.prod.js
11:13:37 PM: npm ERR! Exit status 1
11:13:37 PM: npm ERR!
11:13:37 PM: npm ERR! Failed at the [email protected] build script.
11:13:37 PM: npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
11:13:37 PM: npm ERR! A complete log of this run can be found in:
11:13:37 PM: npm ERR! /opt/buildhome/.npm/_logs/2021-08-06T17_43_37_603Z-debug.log
11:13:37 PM: ​
11:13:37 PM: ────────────────────────────────────────────────────────────────
11:13:37 PM: "build.command" failed
11:13:37 PM: ────────────────────────────────────────────────────────────────
11:13:37 PM: ​
11:13:37 PM: Error message
11:13:37 PM: Command failed with exit code 1: npm run build
11:13:37 PM: ​
11:13:37 PM: Error location
11:13:37 PM: In Build command from Netlify app:
11:13:37 PM: npm run build
11:13:37 PM: ​
11:13:37 PM: Resolved config
11:13:37 PM: build:
11:13:37 PM: command: npm run build
11:13:37 PM: commandOrigin: ui
11:13:37 PM: publish: /opt/build/repo/dist
11:13:37 PM: publishOrigin: ui
11:13:38 PM: Caching artifacts
11:13:38 PM: Started saving node modules
11:13:38 PM: Finished saving node modules
11:13:38 PM: Started saving build plugins
11:13:38 PM: Finished saving build plugins
11:13:38 PM: Started saving pip cache
11:13:38 PM: Finished saving pip cache
11:13:38 PM: Started saving emacs cask dependencies
11:13:38 PM: Finished saving emacs cask dependencies
11:13:38 PM: Started saving maven dependencies
11:13:38 PM: Finished saving maven dependencies
11:13:38 PM: Started saving boot dependencies
11:13:38 PM: Finished saving boot dependencies
11:13:38 PM: Started saving rust rustup cache
11:13:38 PM: Finished saving rust rustup cache
11:13:38 PM: Started saving go dependencies
11:13:38 PM: Finished saving go dependencies
11:13:41 PM: Build failed due to a user error: Build script returned non-zero exit code: 2
11:13:41 PM: Creating deploy upload records
11:13:41 PM: Failing build: Failed to build site
11:13:41 PM: Failed during stage 'building site': Build script returned non-zero exit code: 2
11:13:41 PM: Finished processing build request in 46.976670181s

so whenever i am pushing the changes this is the issue that i am getting. the site gets deployed without the changes, but once it detects the changes it throws this error. Please help

Page does not render correctly

I noticed that suddenly my page does not load the styles anymore. Is the Bootstrap link broken? I tried cloning the original site from cobidev again to see if it was me who did something wrong but the new clone only shows the HTML as well. Does anyone know what has happened?

Optional dependency skipping and npm start error.

Steps that i have followed are :

  1. forked the repository

  2. cloned the repository

  3. removed the remote origin

  4. tried to install the dependencies using npm install - there i get optional dependency skipping message

  5. tried to run locally using npm start - there too i get error

     Can someone help me running this locally ?
    

Screenshot (2605)
Screenshot (2606)

npm install

image

I get the following error when installing npm. can somebody help me?

Url of Page

This page url is not working and this page is not founded on your url address.

Add PWA support to the application

Hey @cobidev, awesome work with simplefolio, I would like to add PWA support, let me know if I can start working on it. PWA's are designed to combine the best features of mobile apps and the mobile web such as speed and offline usage, without downloading anything.

NPM Start Error

After following the necessary steps and ensuring i have the required version of npm I still encounter this error
simplefolio

netlify deployment error

8:28:36 PM: Build ready to start
8:28:37 PM: build-image version: 09c2cdcdf242cf2f57c9ee0fcad9d298fad9ad41
8:28:37 PM: build-image tag: v3.5.0
8:28:37 PM: buildbot version: 92401c20a786cb1d10de411d95c4bfae445aeadc
8:28:38 PM: Fetching cached dependencies
8:28:38 PM: Failed to fetch cache, continuing with build
8:28:38 PM: Starting to prepare the repo for build
8:28:38 PM: No cached dependencies found. Cloning fresh repo
8:28:38 PM: git clone https://github.com/ashwinpillai/resume
8:28:39 PM: Preparing Git Reference refs/heads/main
8:28:40 PM: Starting build script
8:28:41 PM: Installing dependencies
8:28:41 PM: Python version set to 2.7
8:28:42 PM: v12.18.0 is already installed.
8:28:43 PM: Now using node v12.18.0 (npm v6.14.4)
8:28:43 PM: Started restoring cached build plugins
8:28:43 PM: Finished restoring cached build plugins
8:28:43 PM: Attempting ruby version 2.7.1, read from environment
8:28:45 PM: Using ruby version 2.7.1
8:28:45 PM: Using PHP version 5.6
8:28:45 PM: Started restoring cached node modules
8:28:45 PM: Finished restoring cached node modules
8:28:45 PM: Installing NPM modules using NPM version 6.14.4
8:29:03 PM: > [email protected] install /opt/build/repo/node_modules/node-sass
8:29:03 PM: > node scripts/install.js
8:29:03 PM: Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/linux-x64-72_binding.node
8:29:04 PM: Download complete
8:29:04 PM: Binary saved to /opt/build/repo/node_modules/node-sass/vendor/linux-x64-72/binding.node
8:29:04 PM: Caching binary to /opt/buildhome/.npm/node-sass/4.14.1/linux-x64-72_binding.node
8:29:04 PM: > [email protected] postinstall /opt/build/repo/node_modules/node-sass
8:29:04 PM: > node scripts/build.js
8:29:05 PM: Binary found at /opt/build/repo/node_modules/node-sass/vendor/linux-x64-72/binding.node
8:29:05 PM: Testing binary
8:29:05 PM: Binary is fine
8:29:06 PM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/webpack-dev-server/node_modules/fsevents):
8:29:06 PM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
8:29:06 PM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack-chokidar2/node_modules/fsevents):
8:29:06 PM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
8:29:06 PM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
8:29:06 PM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
8:29:06 PM: added 962 packages from 532 contributors and audited 967 packages in 19.502s
8:29:06 PM: 50 packages are looking for funding
8:29:06 PM: run npm fund for details
8:29:06 PM: found 0 vulnerabilities
8:29:06 PM: NPM modules installed
8:29:07 PM: Started restoring cached go cache
8:29:07 PM: Finished restoring cached go cache
8:29:07 PM: go version go1.14.4 linux/amd64
8:29:07 PM: go version go1.14.4 linux/amd64
8:29:07 PM: Installing missing commands
8:29:07 PM: Verify run directory
8:29:09 PM: ​
8:29:09 PM: ┌─────────────────────────────┐
8:29:09 PM: │ Netlify Build │
8:29:09 PM: └─────────────────────────────┘
8:29:09 PM: ​
8:29:09 PM: ❯ Version
8:29:09 PM: @netlify/build 5.3.1
8:29:09 PM: ​
8:29:09 PM: ❯ Flags
8:29:09 PM: deployId: 5fb3e51cb53fa82bd1696b10
8:29:09 PM: mode: buildbot
8:29:09 PM: ​
8:29:09 PM: ❯ Current directory
8:29:09 PM: /opt/build/repo
8:29:09 PM: ​
8:29:09 PM: ❯ Config file
8:29:09 PM: No config file was defined: using default values.
8:29:09 PM: ​
8:29:09 PM: ❯ Context
8:29:09 PM: production
8:29:09 PM: ​
8:29:09 PM: ┌───────────────────────────────────┐
8:29:09 PM: │ 1. Build command from Netlify app │
8:29:09 PM: └───────────────────────────────────┘
8:29:09 PM: ​
8:29:09 PM: $ npm run build
8:29:09 PM: > [email protected] build /opt/build/repo
8:29:09 PM: > webpack --config webpack.prod.js
8:29:21 PM: Hash: e277526b2c823e8dfad6
8:29:21 PM: Version: webpack 4.44.2
8:29:21 PM: Time: 9805ms
8:29:21 PM: Built at: 11/17/2020 2:59:21 PM
8:29:21 PM: 4 assets
8:29:21 PM: Entrypoint vendor = vendor.16a91483182952ce1d4c.bundle.js
8:29:21 PM: Entrypoint main = main.fd790a426c9a8d7da599.css main.8d0c1fd70573612ffc7a.bundle.js
8:29:21 PM: [2] ./src/js/tilt.js 180 bytes {0} [built]
8:29:21 PM: [3] ./src/js/sr.js + 1 modules 1.86 KiB {0} [built]
8:29:21 PM: | ./src/js/sr.js 1.73 KiB [built]
8:29:21 PM: | ./src/js/assignProps.js 131 bytes [built]
8:29:21 PM: [4] ./src/vendor.js 58 bytes {1} [built]
8:29:21 PM: [6] (webpack)/buildin/global.js 472 bytes {1} [built]
8:29:21 PM: [7] ./src/index.js 425 bytes {0} [built]
8:29:21 PM: [9] ./src/style/main.scss 39 bytes {0} [built]
8:29:21 PM: + 6 hidden modules
8:29:21 PM: Child HtmlWebpackCompiler:
8:29:21 PM: 2 assets
8:29:21 PM: Entrypoint HtmlWebpackPlugin_0 = __child-HtmlWebpackPlugin_0
8:29:21 PM: [0] ./node_modules/html-webpack-plugin/lib/loader.js!./src/template.html 7.4 KiB {0} [built]
8:29:21 PM: [2] ./src/assets/project.jpg 97 bytes {0} [built]
8:29:21 PM: + 1 hidden module
8:29:21 PM: ERROR in ./src/template.html (./node_modules/html-webpack-plugin/lib/loader.js!./src/template.html)
8:29:21 PM: Module not found: Error: Can't resolve './assets/face.jpg' in '/opt/build/repo/src' @ ./src/template.html (./node_modules/html-webpack-plugin/lib/loader.js!./src/template.html) 5:33-61
8:29:21 PM: ERROR in ./src/template.html (./node_modules/html-webpack-plugin/lib/loader.js!./src/template.html)
8:29:21 PM: Module not found: Error: Can't resolve './assets/pizza.jpg' in '/opt/build/repo/src' @ ./src/template.html (./node_modules/html-webpack-plugin/lib/loader.js!./src/template.html) 4:33-62
8:29:21 PM: Child mini-css-extract-plugin node_modules/css-loader/dist/cjs.js!node_modules/sass-loader/dist/cjs.js!src/style/main.scss:
8:29:21 PM: Entrypoint mini-css-extract-plugin = *
8:29:21 PM: [0] ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style/main.scss 151 KiB {0} [built]
8:29:21 PM: + 1 hidden module
8:29:21 PM: npm ERR! code ELIFECYCLE
8:29:21 PM: npm ERR! errno 2
8:29:21 PM: npm ERR! [email protected] build: webpack --config webpack.prod.js
8:29:21 PM: npm ERR! Exit status 2
8:29:21 PM: npm ERR!
8:29:21 PM: npm ERR! Failed at the [email protected] build script.
8:29:21 PM: npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
8:29:21 PM: npm ERR! A complete log of this run can be found in:
8:29:21 PM: npm ERR! /opt/buildhome/.npm/_logs/2020-11-17T14_59_21_242Z-debug.log
8:29:21 PM: ​
8:29:21 PM: ┌─────────────────────────────┐
8:29:21 PM: │ "build.command" failed │
8:29:21 PM: └─────────────────────────────┘
8:29:21 PM: ​
8:29:21 PM: Error message
8:29:21 PM: Command failed with exit code 2: npm run build
8:29:21 PM: ​
8:29:21 PM: Error location
8:29:21 PM: In Build command from Netlify app:
8:29:21 PM: npm run build
8:29:21 PM: ​
8:29:21 PM: Resolved config
8:29:21 PM: build:
8:29:21 PM: command: npm run build
8:29:21 PM: commandOrigin: ui
8:29:21 PM: publish: /opt/build/repo/dist
8:29:21 PM: Caching artifacts
8:29:21 PM: Started saving node modules
8:29:21 PM: Finished saving node modules
8:29:21 PM: Started saving build plugins
8:29:21 PM: Finished saving build plugins
8:29:21 PM: Started saving pip cache
8:29:21 PM: Finished saving pip cache
8:29:21 PM: Started saving emacs cask dependencies
8:29:21 PM: Finished saving emacs cask dependencies
8:29:21 PM: Started saving maven dependencies
8:29:21 PM: Finished saving maven dependencies
8:29:21 PM: Started saving boot dependencies
8:29:21 PM: Finished saving boot dependencies
8:29:21 PM: Started saving go dependencies
8:29:21 PM: Finished saving go dependencies
8:29:24 PM: Build failed due to a user error: Build script returned non-zero exit code: 2
8:29:24 PM: Failing build: Failed to build site
8:29:24 PM: Failed during stage 'building site': Build script returned non-zero exit code: 2
8:29:24 PM: Finished processing build request in 46.714865326s

Unable to install on windows 10

npm install command fails with following error:

3753 timing command:install Completed in 54409ms
3754 verbose stack Error: command failed
3754 verbose stack     at ChildProcess.<anonymous> (C:\Users\Saurabh\AppData\Roaming\npm\node_modules\npm\node_modules\@npmcli\promise-spawn\index.js:64:27)
3754 verbose stack     at ChildProcess.emit (node:events:394:28)
3754 verbose stack     at maybeClose (node:internal/child_process:1067:16)
3754 verbose stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:301:5)
3755 verbose pkgid [email protected]
3756 verbose cwd C:\Users\Saurabh\non-React_webProjects\simplefolio
3757 verbose Windows_NT 10.0.19041
3758 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\Saurabh\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "install"
3759 verbose node v16.3.0
3760 verbose npm  v7.16.0
3761 error code 1
3762 error path C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\node-sass
3763 error command failed
3764 error command C:\WINDOWS\system32\cmd.exe /d /s /c node scripts/build.js
3765 error Building: C:\Program Files\nodejs\node.exe C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\node-gyp\bin\node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
3766 error gyp info it worked if it ends with ok
3766 error gyp verb cli [
3766 error gyp verb cli   'C:\\Program Files\\nodejs\\node.exe',
3766 error gyp verb cli   'C:\\Users\\Saurabh\\non-React_webProjects\\simplefolio\\node_modules\\node-gyp\\bin\\node-gyp.js',
3766 error gyp verb cli   'rebuild',
3766 error gyp verb cli   '--verbose',
3766 error gyp verb cli   '--libsass_ext=',
3766 error gyp verb cli   '--libsass_cflags=',
3766 error gyp verb cli   '--libsass_ldflags=',
3766 error gyp verb cli   '--libsass_library='
3766 error gyp verb cli ]
3766 error gyp info using [email protected]
3766 error gyp info using [email protected] | win32 | x64
3766 error gyp verb command rebuild []
3766 error gyp verb command clean []
3766 error gyp verb clean removing "build" directory
3766 error gyp verb command configure []
3766 error gyp verb check python checking for Python executable "python2" in the PATH
3766 error gyp verb `which` failed Error: not found: python2
3766 error gyp verb `which` failed     at getNotFoundError (C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:13:12)
3766 error gyp verb `which` failed     at F (C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:68:19)
3766 error gyp verb `which` failed     at E (C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:80:29)
3766 error gyp verb `which` failed     at C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:89:16
3766 error gyp verb `which` failed     at C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\isexe\index.js:42:5
3766 error gyp verb `which` failed     at C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\isexe\windows.js:36:5
3766 error gyp verb `which` failed     at FSReqCallback.oncomplete (node:fs:195:21)
3766 error gyp verb `which` failed  python2 Error: not found: python2
3766 error gyp verb `which` failed     at getNotFoundError (C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:13:12)
3766 error gyp verb `which` failed     at F (C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:68:19)
3766 error gyp verb `which` failed     at E (C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:80:29)
3766 error gyp verb `which` failed     at C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\which\which.js:89:16
3766 error gyp verb `which` failed     at C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\isexe\index.js:42:5
3766 error gyp verb `which` failed     at C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\isexe\windows.js:36:5
3766 error gyp verb `which` failed     at FSReqCallback.oncomplete (node:fs:195:21) {
3766 error gyp verb `which` failed   code: 'ENOENT'
3766 error gyp verb `which` failed }
3766 error gyp verb check python checking for Python executable "python" in the PATH
3766 error gyp verb `which` succeeded python C:\Python38\python.EXE
3766 error gyp ERR! configure error
3766 error gyp ERR! stack Error: Command failed: C:\Python38\python.EXE -c import sys; print "%s.%s.%s" % sys.version_info[:3];
3766 error gyp ERR! stack   File "<string>", line 1
3766 error gyp ERR! stack     import sys; print "%s.%s.%s" % sys.version_info[:3];
3766 error gyp ERR! stack                       ^
3766 error gyp ERR! stack SyntaxError: invalid syntax
3766 error gyp ERR! stack
3766 error gyp ERR! stack     at ChildProcess.exithandler (node:child_process:326:12)
3766 error gyp ERR! stack     at ChildProcess.emit (node:events:394:28)
3766 error gyp ERR! stack     at maybeClose (node:internal/child_process:1067:16)
3766 error gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:301:5)
3766 error gyp ERR! System Windows_NT 10.0.19041
3766 error gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\Saurabh\\non-React_webProjects\\simplefolio\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
3766 error gyp ERR! cwd C:\Users\Saurabh\non-React_webProjects\simplefolio\node_modules\node-sass
3766 error gyp ERR! node -v v16.3.0
3766 error gyp ERR! node-gyp -v v3.8.0
3766 error gyp ERR! not ok
3766 error Build failed with error code: 1
3767 verbose exit 1

throw er; // Unhandled 'error' event

  throw er; // Unhandled 'error' event
  ^

Error: spawn cmd ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)
at onErrorNT (internal/child_process.js:465:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21)
Emitted 'error' event on ChildProcess instance at:
at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
at onErrorNT (internal/child_process.js:465:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21) {
errno: -4058,
code: 'ENOENT',
syscall: 'spawn cmd',
path: 'cmd',
spawnargs: [ '/c', 'start', '""', '/b', 'http://localhost:8080/' ]
}

npm install error

When i try to npm install i see this
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/webpack
npm ERR! dev webpack@"^5.40.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer webpack@"^4.0.0" from [email protected]
npm ERR! node_modules/optimize-css-assets-webpack-plugin
npm ERR! dev optimize-css-assets-webpack-plugin@"^6.0.1" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!

Profile Image

For some reason, i cant get the profile image to show.

Netlify fail

Hi,

While deploying it to the Netlify i get this error


ERROR in   Error: Child compilation failed:
1:15:49 PM:   Module not found: Error: Can't resolve './assets/image1.png' in '/opt/bu  ild/repo/src':
1:15:49 PM:   Error: Can't resolve './assets/chinguBanner.png' in '/opt/build/repo/src'
1:15:49 PM:   Module not found: Error: Can't resolve './assets/image2.png' in '/opt/bui  ld/repo/src':
1:15:49 PM:   Error: Can't resolve './assets/jsHackeryou.png' in '/opt/build/repo/src'

different npm start error

This is the error message I get. I am not using sublime, but Visual Studio Code.

npm start
npm ERR! Missing script: "start"
npm ERR!
npm ERR! Did you mean one of these?
npm ERR! npm star # Mark your favorite packages
npm ERR! npm stars # View packages marked as favorites
npm ERR!
npm ERR! To see a list of scripts, run:
npm ERR! npm run

Yet there is a start script in package.json

The website on my local server looks a little sad too. Not sure why it should look like that.

no_css

How are static files used here?

I suggest you describe in the readme, how static files are used here so that users leveraging this repo are able to implement features with more ease. For example, creating an Open Graph Protocol Object.

Netlify deployment issue.

Hi Cobidev,
I cannot deploy on Netlify because the template.html file is not working when the deployment is in progress.

`9:06:34 PM: Build ready to start
9:06:36 PM: build-image version: fa439ad1ab9393b2c0d449d8d7c033927683f4b0
9:06:36 PM: build-image tag: v4.3.0
9:06:36 PM: buildbot version: bfa1ece451875e5fe124c5b0a59bb85e0abb8d50
9:06:36 PM: Building without cache
9:06:36 PM: Starting to prepare the repo for build
9:06:36 PM: No cached dependencies found. Cloning fresh repo
9:06:36 PM: git clone https://github.com/Gauthamyadav777/Gautham_Website
9:06:38 PM: Preparing Git Reference refs/heads/master
9:06:38 PM: Parsing package.json dependencies
9:06:39 PM: Different publish path detected, going to use the one specified in the Netlify configuration file: 'dist' versus '/dist' in the Netlify UI
9:06:39 PM: Starting build script
9:06:39 PM: Installing dependencies
9:06:39 PM: Python version set to 2.7
9:06:40 PM: Downloading and installing node v16.9.0...
9:06:40 PM: Downloading https://nodejs.org/dist/v16.9.0/node-v16.9.0-linux-x64.tar.xz...
9:06:40 PM: Computing checksum with sha256sum
9:06:40 PM: Checksums matched!
9:06:43 PM: Now using node v16.9.0 (npm v7.21.1)
9:06:43 PM: Started restoring cached build plugins
9:06:43 PM: Finished restoring cached build plugins
9:06:43 PM: Attempting ruby version 2.7.2, read from environment
9:06:44 PM: Using ruby version 2.7.2
9:06:45 PM: Using PHP version 8.0
9:06:45 PM: Started restoring cached node modules
9:06:45 PM: Finished restoring cached node modules
9:06:45 PM: Installing NPM modules using NPM version 7.21.1
9:07:00 PM: npm WARN deprecated [email protected]: this library is no longer supported
9:07:01 PM: npm WARN deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
9:07:01 PM: npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
9:07:02 PM: npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
9:07:05 PM: npm WARN deprecated [email protected]: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1
9:07:07 PM: added 612 packages, and audited 613 packages in 22s
9:07:07 PM: 73 packages are looking for funding
9:07:07 PM:   run `npm fund` for details
9:07:07 PM: found 0 vulnerabilities
9:07:07 PM: NPM modules installed
9:07:08 PM: Started restoring cached go cache
9:07:08 PM: Finished restoring cached go cache
9:07:08 PM: go version go1.16.5 linux/amd64
9:07:08 PM: go version go1.16.5 linux/amd64
9:07:08 PM: Installing missing commands
9:07:08 PM: Verify run directory
9:07:09 PM: ​
9:07:09 PM: ────────────────────────────────────────────────────────────────
9:07:09 PM:   Netlify Build                                                 
9:07:09 PM: ────────────────────────────────────────────────────────────────
9:07:09 PM: ​
9:07:09 PM: ❯ Version
9:07:09 PM:   @netlify/build 18.8.0
9:07:09 PM: ​
9:07:09 PM: ❯ Flags
9:07:09 PM:   baseRelDir: true
9:07:09 PM:   buildId: 613b3c3aaa9b07b2d22a1dd9
9:07:09 PM:   deployId: 613b3c3aaa9b07b2d22a1ddb
9:07:09 PM: ​
9:07:09 PM: ❯ Current directory
9:07:09 PM:   /opt/build/repo
9:07:09 PM: ​
9:07:09 PM: ❯ Config file
9:07:09 PM:   No config file was defined: using default values.
9:07:09 PM: ​
9:07:09 PM: ❯ Context
9:07:09 PM:   production
9:07:09 PM: ​
9:07:09 PM: ────────────────────────────────────────────────────────────────
9:07:09 PM:   1. Build command from Netlify app                             
9:07:09 PM: ────────────────────────────────────────────────────────────────
9:07:09 PM: ​
9:07:09 PM: $ npm run build
9:07:10 PM: > build
9:07:10 PM: > webpack --config webpack.prod.js
9:07:16 PM: assets by status 785 KiB [big]
9:07:16 PM:   asset vendor.a323db7df66b0b1182ef.bundle.js 486 KiB [emitted] [immutable] [big] (name: vendor)
9:07:16 PM:   asset main.55a2c6c5d20872b5be78.bundle.js 299 KiB [emitted] [immutable] [big] (name: main)
9:07:16 PM: asset main.330f33a5968af0b8a811.css 163 KiB [emitted] [immutable] [minimized] (name: main)
9:07:16 PM: asset resume.pdf 2.96 KiB [emitted] [from: src/assets/resume.pdf] (auxiliary name: main)
9:07:16 PM: Entrypoint vendor [big] 486 KiB = vendor.a323db7df66b0b1182ef.bundle.js
9:07:16 PM: Entrypoint main [big] 462 KiB (2.96 KiB) = main.330f33a5968af0b8a811.css 163 KiB main.55a2c6c5d20872b5be78.bundle.js 299 KiB 1 auxiliary asset
9:07:16 PM: orphan modules 300 KiB [orphan] 67 modules
9:07:16 PM: runtime modules 1.72 KiB 5 modules
9:07:16 PM: cacheable modules 503 KiB (javascript) 166 KiB (css/mini-extract)
9:07:16 PM:   javascript modules 503 KiB
9:07:16 PM:     modules by path ./src/ 210 KiB
9:07:16 PM:       ./src/vendor.js + 56 modules 208 KiB [built] [code generated]
9:07:16 PM:       ./src/index.js + 6 modules 2.54 KiB [built] [code generated]
9:07:16 PM:     modules by path ./node_modules/ 293 KiB
9:07:16 PM:       ./node_modules/jquery/dist/jquery.js 282 KiB [built] [code generated]
9:07:16 PM:       ./node_modules/tilt.js/src/tilt.jquery.js 11.5 KiB [built] [code generated]
9:07:16 PM:   modules by path ./src/style/ 166 KiB
9:07:16 PM:     css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style/main.scss 72 bytes [built] [code generated]
9:07:16 PM:     css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style/main.scss (1) 166 KiB [built] [code generated]
9:07:16 PM: WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
9:07:16 PM: This can impact web performance.
9:07:16 PM: Assets:
9:07:16 PM:   vendor.a323db7df66b0b1182ef.bundle.js (486 KiB)
9:07:16 PM:   main.55a2c6c5d20872b5be78.bundle.js (299 KiB)
9:07:16 PM: WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
9:07:16 PM: Entrypoints:
9:07:16 PM:   vendor (486 KiB)
9:07:16 PM: Creating deploy upload records
9:07:16 PM:       vendor.a323db7df66b0b1182ef.bundle.js
9:07:16 PM:   main (462 KiB)
9:07:16 PM:       main.330f33a5968af0b8a811.css
9:07:16 PM:       main.55a2c6c5d20872b5be78.bundle.js
9:07:16 PM: 
9:07:16 PM: WARNING in webpack performance recommendations:
9:07:16 PM: You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.
9:07:16 PM: For more info visit https://webpack.js.org/guides/code-splitting/
9:07:16 PM: webpack 5.52.1 compiled with 3 warnings in 5005 ms
9:07:16 PM: ​
9:07:16 PM: (build.command completed in 6.5s)
9:07:16 PM: ​
9:07:16 PM: ────────────────────────────────────────────────────────────────
9:07:16 PM:   2. Deploy site                                                
9:07:16 PM: ────────────────────────────────────────────────────────────────
9:07:16 PM: ​
9:07:16 PM: Starting to deploy site from 'dist'
9:07:16 PM: Creating deploy tree 
9:07:16 PM: 0 new files to upload
9:07:16 PM: 0 new functions to upload
9:07:16 PM: Site deploy was successfully initiated
9:07:16 PM: ​
9:07:16 PM: (Deploy site completed in 114ms)
9:07:16 PM: ​
9:07:16 PM: ────────────────────────────────────────────────────────────────
9:07:16 PM:   Netlify Build Complete                                        
9:07:16 PM: ────────────────────────────────────────────────────────────────
9:07:16 PM: ​
9:07:16 PM: (Netlify Build completed in 6.7s)
9:07:16 PM: Starting post processing
9:07:16 PM: Post processing - HTML
9:07:16 PM: Caching artifacts
9:07:16 PM: Started saving node modules
9:07:16 PM: Finished saving node modules
9:07:16 PM: Started saving build plugins
9:07:16 PM: Finished saving build plugins
9:07:16 PM: Started saving pip cache
9:07:16 PM: Post processing - header rules
9:07:16 PM: Finished saving pip cache
9:07:16 PM: Started saving emacs cask dependencies
9:07:16 PM: Post processing - redirect rules
9:07:16 PM: Finished saving emacs cask dependencies
9:07:16 PM: Started saving maven dependencies
9:07:16 PM: Finished saving maven dependencies
9:07:16 PM: Started saving boot dependencies
9:07:16 PM: Finished saving boot dependencies
9:07:16 PM: Post processing done
9:07:16 PM: Started saving rust rustup cache
9:07:16 PM: Finished saving rust rustup cache
9:07:16 PM: Started saving go dependencies
9:07:16 PM: Finished saving go dependencies
9:07:17 PM: Site is live ✨
9:07:19 PM: Build script success
9:07:41 PM: Finished processing build request in 1m5.03349601s`

Thank you!

No Bundle Entries Found

Hello, I'm running into issues installing the dependencies.
I ran the command
$ npm install --unsafe-perm=true --allow-root

also ran:
$ npm install -g webpack
$ npm install --unsafe-perm=true --allow-root --legacy-peer-deps

kept getting issues installing dependencies, and ran
$ npm audit fix
$ npm audit fix --force

when I ran
$ npm start

this is what resulted:

× No entries found.
at Bundler.bundle (C:\Users\gregv\OneDrive\Desktop\ZtM\simplefolio\node_modules\parcel\src\Bundler.js:275:17)
at async Bundler.serve (C:\Users\gregv\OneDrive\Desktop\ZtM\simplefolio\node_modules\parcel\src\Bundler.js:842:7)
at async Command.bundle (C:\Users\gregv\OneDrive\Desktop\ZtM\simplefolio\node_modules\parcel\src\cli.js:241:20)

I have no idea what to do. Can anyone please help and guide me in the right direction?

download resume option

How can I have my visitors DOWNLOAD my resume? Is there a way for that? If it isn't, can you spell out "there isn't, your resume MUST be served from a link..", or something like that? Thanks.

Netlify build failed

`12:30:52 PM: Build ready to start
12:30:54 PM: build-image version: 3bcb38c35508b42e9121d4badfe6d8c66fd7a3f0
12:30:54 PM: build-image tag: v4.3.2
12:30:54 PM: buildbot version: 050f5e521c0d810d56330c3a7d48687a1932379d
12:30:54 PM: Fetching cached dependencies
12:30:54 PM: Failed to fetch cache, continuing with build
12:30:54 PM: Starting to prepare the repo for build
12:30:55 PM: No cached dependencies found. Cloning fresh repo
12:30:55 PM: git clone https://github.com/Nandan-Wewhare/Portfolio
12:30:56 PM: Preparing Git Reference refs/heads/master
12:30:57 PM: Parsing package.json dependencies
12:30:57 PM: Different publish path detected, going to use the one specified in the Netlify configuration file: 'dist' versus 'dist/' in the Netlify UI
12:30:58 PM: Starting build script
12:30:58 PM: Installing dependencies
12:30:58 PM: Python version set to 2.7
12:30:58 PM: v16.10.0 is already installed.
12:30:59 PM: Now using node v16.10.0 (npm v7.24.0)
12:30:59 PM: Started restoring cached build plugins
12:30:59 PM: Finished restoring cached build plugins
12:30:59 PM: Attempting ruby version 2.7.2, read from environment
12:31:00 PM: Using ruby version 2.7.2
12:31:01 PM: Using PHP version 8.0
12:31:01 PM: Started restoring cached node modules
12:31:01 PM: Finished restoring cached node modules
12:31:01 PM: Installing NPM modules using NPM version 7.24.0
12:31:03 PM: npm ERR! code ERESOLVE
12:31:03 PM: npm ERR! ERESOLVE unable to resolve dependency tree
12:31:03 PM: npm ERR!
12:31:03 PM: npm ERR! While resolving: [email protected]
12:31:03 PM: npm ERR! Found: [email protected]
12:31:03 PM: npm ERR! node_modules/webpack
12:31:03 PM: npm ERR!   dev webpack@"^5.40.0" from the root project
12:31:03 PM: npm ERR!
12:31:03 PM: npm ERR! Could not resolve dependency:
12:31:03 PM: npm ERR! peer webpack@"^4.0.0" from [email protected]
12:31:03 PM: npm ERR! node_modules/optimize-css-assets-webpack-plugin
12:31:03 PM: npm ERR!   dev optimize-css-assets-webpack-plugin@"^6.0.1" from the root project
12:31:03 PM: npm ERR!
12:31:03 PM: npm ERR! Fix the upstream dependency conflict, or retry
12:31:03 PM: npm ERR! this command with --force, or --legacy-peer-deps
12:31:03 PM: npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
12:31:03 PM: npm ERR!
12:31:03 PM: npm ERR! See /opt/buildhome/.npm/eresolve-report.txt for a full report.
12:31:03 PM: Creating deploy upload records
12:31:03 PM: npm ERR! A complete log of this run can be found in:
12:31:03 PM: npm ERR!     /opt/buildhome/.npm/_logs/2021-10-07T07_01_03_726Z-debug.log
12:31:03 PM: Error during NPM install
12:31:03 PM: Build was terminated: Build script returned non-zero exit code: 1
12:31:03 PM: Failing build: Failed to build site
12:31:03 PM: Failed during stage 'building site': Build script returned non-zero exit code: 1
12:31:03 PM: Finished processing build request in 9.300262689s`

Multi language portfolio error

Hi man, thanks a lot for this super portfolio!
So basically what i wanted to do was to enable the possibility to switch the site from english to french, so I added two buttons and i duplicated the html and then translated it and then link the button to the translated html, so i can switch between the two.
For a long time it didn't work but then i understood there was an issu with webpack, who only knew about template.html. So i created new webpack html plugins for template_french.html and it works locally.
Now the problem is that when i deploy the site, as you said, on netlify, when i click on the FR button i get an error: Page Not Found
Looks like you've followed a broken link or entered a URL that doesn't exist on this site.

I kind of think it has something to do with the dist folder not knowing about my translated page but i have no idea how to fix it. Can you help me??? Thanks a lot!

npm start errors

When I run the "npm start" command, I get all of these errors:
Screenshot from 2021-09-20 14-42-13

Resume addition

Is anyone else facing an issue while linking resume pdf. It is showing error 404. Even though I checked the location of the pdf but could not resolve it .

Hey it's me!

Hey! Would you mind sending a message on Discord as soon as you can? I would like to record a lecture using this lecture within the next week!

Changing Favicon

Anyone else have an issue changing the title icon? Can't seem to change it.

Netlify deployment

Hey Jacop

I hope this reaches you with the best health and spirit.

I'm running into a problem over here.

When Netlify tried deploy my web , it gave me this error log

webpack.txt

Unable to attach another PDF apart from resume.pdf / Also how to fix the title problem

Hello,
https://confident-dubinsky-3db436.netlify.app/
I have successfully hosted on netfily, however, when I give this link to anyone on the WhatsApp or similar apps, I get the preview as shown in the picture. so how can i fix this " [Your Name here] | Developer "
image

When I add another button for a different pdf file, the second button still opens the resume.pdf only even though I have updated the button and provided the new pdf link in href as shown in the picture.

<span class="d-flex mt-3">
              <a
              rel="noreferrer"
              target="_blank"
              class="cta-btn cta-btn--resume"
              href="src/assets/another.pdf"
              >
              View another file
            </a>
          </span>     

2 warnings generated

The npm install is stucked in a loop of:

2 warnings generated. g++ -o Release/obj.target/libsass/src/libsass/src/emitter.o ../src/libsass/src/emitter.cpp '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__STDC_FORMAT_MACROS' '-DLIBSASS_VERSION="3.5.5"' '-D_GLIBCXX_USE_C99_MATH' -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/include/node -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/src -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/openssl/config -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/openssl/openssl/include -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/uv/include -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/zlib -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/v8/include -I../src/libsass/include -fPIC -Wall -Wextra -Wno-unused-parameter -O3 -fno-omit-frame-pointer -fPIC -std=gnu++14 -std=c++0x -fexceptions -frtti -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/emitter.o.d.raw -c g++ -o Release/obj.target/libsass/src/libsass/src/environment.o ../src/libsass/src/environment.cpp '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-D__STDC_FORMAT_MACROS' '-DLIBSASS_VERSION="3.5.5"' '-D_GLIBCXX_USE_C99_MATH' -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/include/node -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/src -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/openssl/config -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/openssl/openssl/include -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/uv/include -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/zlib -I/data/data/com.termux/files/home/.cache/node-gyp/16.11.0/deps/v8/include -I../src/libsass/include -fPIC -Wall -Wextra -Wno-unused-parameter -O3 -fno-omit-frame-pointer -fPIC -std=gnu++14 -std=c++0x -fexceptions -frtti -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/environment.o.d.raw -c In file included from ../src/libsass/src/environment.cpp:2: ../src/libsass/src/ast.hpp:1614:25: warning: loop variable 'numerator' creates a copy from type 'const std::basic_string<char>' [-Wrange-loop-construct] for (const auto numerator : numerators) ^ ../src/libsass/src/ast.hpp:1614:14: note: use reference type 'const std::basic_string<char> &' to prevent copying for (const auto numerator : numerators) ^~~~~~~~~~~~~~~~~~~~~~ & ../src/libsass/src/ast.hpp:1616:25: warning: loop variable 'denominator' creates a copy from type 'const std::basic_string<char>' [-Wrange-loop-construct] for (const auto denominator : denominators) ^ ../src/libsass/src/ast.hpp:1616:14: note: use reference type 'const std::basic_string<char> &' to prevent copying for (const auto denominator : denominators) ^~~~~~~~~~~~~~~~~~~~~~~~ &

Readme Instructions on resume

Hi @cobidev, I just used your project as part of Andrei's course and I was wondering if you could update the readme with steps on how to add a resume to the site? I threw a PDF into the src folder and added it to the resume href and I get nothing (probably something I did) but I think steps for everyone would help.
Thanks!

Download CV or Hire Me ?

Hey there!! what's more professional in an portfolio website to have an hire me button or a simple download resume option. which one should be there?

  • also is it advisable to use particle.js in portfolio website front page? (professionally)?

I liked your website so much clean UI and a good readme file and tells a lot about the project itself.
Amazing work!!
I've made an portfolio website if someone can give me some improvement suggestions it would really help me :)
github link - https://github.com/shivaamm/shivaamm.github.io
website link - https://shivaamm.github.io/

netlify site build failed...

1:52:48 AM: Build ready to start
1:52:50 AM: build-image version: 53b83b6bede2920f236b25b6f5a95334320dc849
1:52:50 AM: build-image tag: v3.6.0
1:52:50 AM: buildbot version: dc0a2b81d00d8f0151c0b6d6eab301febfb9ab68
1:52:51 AM: Fetching cached dependencies
1:52:51 AM: Failed to fetch cache, continuing with build
1:52:51 AM: Starting to prepare the repo for build
1:52:51 AM: No cached dependencies found. Cloning fresh repo
1:52:51 AM: git clone https://github.com/bishalmallick/portfolio
1:52:52 AM: Preparing Git Reference refs/heads/master
1:52:54 AM: Different publish path detected, going to use the one specified in the Netlify configuration file: 'public' versus 'public/' in the Netlify UI
1:52:54 AM: Starting build script
1:52:54 AM: Installing dependencies
1:52:54 AM: Python version set to 2.7
1:52:56 AM: v12.18.0 is already installed.
1:52:56 AM: Now using node v12.18.0 (npm v6.14.4)
1:52:56 AM: Started restoring cached build plugins
1:52:56 AM: Finished restoring cached build plugins
1:52:56 AM: Attempting ruby version 2.7.1, read from environment
1:52:58 AM: Using ruby version 2.7.1
1:52:58 AM: Using PHP version 5.6
1:52:58 AM: Started restoring cached node modules
1:52:58 AM: Finished restoring cached node modules
1:52:59 AM: Installing NPM modules using NPM version 6.14.4
1:53:18 AM: > [email protected] install /opt/build/repo/node_modules/node-sass
1:53:18 AM: > node scripts/install.js
1:53:19 AM: Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/linux-x64-72_binding.node
1:53:19 AM: Download complete
1:53:19 AM: Binary saved to /opt/build/repo/node_modules/node-sass/vendor/linux-x64-72/binding.node
1:53:20 AM: Caching binary to /opt/buildhome/.npm/node-sass/4.14.1/linux-x64-72_binding.node
1:53:20 AM: > [email protected] postinstall /opt/build/repo/node_modules/node-sass
1:53:20 AM: > node scripts/build.js
1:53:20 AM: Binary found at /opt/build/repo/node_modules/node-sass/vendor/linux-x64-72/binding.node
1:53:20 AM: Testing binary
1:53:20 AM: Binary is fine
1:53:21 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/webpack-dev-server/node_modules/fsevents):
1:53:21 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
1:53:21 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack-chokidar2/node_modules/fsevents):
1:53:21 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
1:53:21 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
1:53:21 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
1:53:21 AM: added 963 packages from 532 contributors and audited 966 packages in 21.722s
1:53:22 AM: 53 packages are looking for funding
1:53:22 AM: run npm fund for details
1:53:22 AM: found 0 vulnerabilities
1:53:22 AM: NPM modules installed
1:53:23 AM: Started restoring cached go cache
1:53:23 AM: Finished restoring cached go cache
1:53:23 AM: go version go1.14.4 linux/amd64
1:53:23 AM: go version go1.14.4 linux/amd64
1:53:23 AM: Installing missing commands
1:53:23 AM: Verify run directory
1:53:25 AM: ​
1:53:25 AM: ────────────────────────────────────────────────────────────────
1:53:25 AM: Netlify Build
1:53:25 AM: ────────────────────────────────────────────────────────────────
1:53:25 AM: ​
1:53:25 AM: ❯ Version
1:53:25 AM: @netlify/build 8.0.0
1:53:25 AM: ​
1:53:25 AM: ❯ Flags
1:53:25 AM: deployId: 5fdd0f984a6ffb01011db087
1:53:25 AM: mode: buildbot
1:53:25 AM: ​
1:53:25 AM: ❯ Current directory
1:53:25 AM: /opt/build/repo
1:53:25 AM: ​
1:53:25 AM: ❯ Config file
1:53:25 AM: No config file was defined: using default values.
1:53:25 AM: ​
1:53:25 AM: ❯ Context
1:53:25 AM: production
1:53:25 AM: ​
1:53:25 AM: ────────────────────────────────────────────────────────────────
1:53:25 AM: 1. Build command from Netlify app
1:53:25 AM: ────────────────────────────────────────────────────────────────
1:53:25 AM: ​
1:53:25 AM: $ webpack --config webpack.prod.js
1:53:36 AM: Hash: 9568235152a809d7fcf3
1:53:36 AM: Version: webpack 4.44.2
1:53:36 AM: Time: 9532ms
1:53:36 AM: Built at: 12/18/2020 8:23:36 PM
1:53:36 AM: Asset Size Chunks Chunk Names
1:53:36 AM: assets/profile.5865e96221c9d55439edb893edf6dd17.jpg 55.4 KiB [emitted] [immutable]
1:53:36 AM: assets/project.ec6fc54416b1cc7af0e289c874edc392.jpg 76.6 KiB [emitted] [immutable]
1:53:36 AM: favicon.png 6.47 KiB [emitted]
1:53:36 AM: index.html 5.33 KiB [emitted]
1:53:36 AM: main.42c7748b59058bf9fb05.bundle.js 95.2 KiB 0 [emitted] [immutable] main
1:53:36 AM: main.fd790a426c9a8d7da599.css 147 KiB 0 [emitted] [immutable] main
1:53:36 AM: vendor.0f582e919eacfa434074.bundle.js 172 KiB 1 [emitted] [immutable] vendor
1:53:36 AM: Entrypoint vendor = vendor.0f582e919eacfa434074.bundle.js
1:53:36 AM: Entrypoint main = main.fd790a426c9a8d7da599.css main.42c7748b59058bf9fb05.bundle.js
1:53:36 AM: [2] ./src/js/tilt.js 170 bytes {0} [built]
1:53:36 AM: [3] ./src/js/sr.js + 1 modules 1.78 KiB {0} [built]
1:53:36 AM: | ./src/js/sr.js 1.66 KiB [built]
1:53:36 AM: | ./src/js/assignProps.js 128 bytes [built]
1:53:36 AM: [4] ./src/vendor.js 56 bytes {1} [built]
1:53:36 AM: [6] (webpack)/buildin/global.js 472 bytes {1} [built]
1:53:36 AM: [7] ./src/index.js 403 bytes {0} [built]
1:53:36 AM: [9] ./src/style/main.scss 39 bytes {0} [built]
1:53:36 AM: + 6 hidden modules
1:53:36 AM: Child HtmlWebpackCompiler:
1:53:36 AM: Asset Size Chunks Chunk Names
1:53:36 AM: assets/profile.5865e96221c9d55439edb893edf6dd17.jpg 55.4 KiB [emitted] [immutable]
1:53:36 AM: assets/project.ec6fc54416b1cc7af0e289c874edc392.jpg 76.6 KiB [emitted] [immutable]
1:53:36 AM: + 1 hidden asset
1:53:36 AM: Entrypoint HtmlWebpackPlugin_0 = __child-HtmlWebpackPlugin_0
1:53:36 AM: [0] ./node_modules/html-webpack-plugin/lib/loader.js!./src/template.html 6.25 KiB {0} [built]
1:53:36 AM: [2] ./src/assets/profile.jpg 97 bytes {0} [built]
1:53:36 AM: [3] ./src/assets/project.jpg 97 bytes {0} [built]
1:53:36 AM: + 1 hidden module
1:53:36 AM: Child mini-css-extract-plugin node_modules/css-loader/dist/cjs.js!node_modules/sass-loader/dist/cjs.js!src/style/main.scss:
1:53:36 AM: Entrypoint mini-css-extract-plugin = *
1:53:36 AM: [0] ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/style/main.scss 151 KiB {0} [built]
1:53:36 AM: + 1 hidden module
1:53:36 AM: ​
1:53:36 AM: (build.command completed in 11.1s)
1:53:36 AM: ​
1:53:36 AM: ────────────────────────────────────────────────────────────────
1:53:36 AM: Netlify Build Complete
1:53:36 AM: ────────────────────────────────────────────────────────────────
1:53:36 AM: ​
1:53:36 AM: (Netlify Build completed in 11.2s)
1:53:36 AM: Caching artifacts
1:53:36 AM: Started saving node modules
1:53:36 AM: Finished saving node modules
1:53:36 AM: Started saving build plugins
1:53:36 AM: Finished saving build plugins
1:53:36 AM: Started saving pip cache
1:53:36 AM: Finished saving pip cache
1:53:36 AM: Started saving emacs cask dependencies
1:53:36 AM: Finished saving emacs cask dependencies
1:53:36 AM: Started saving maven dependencies
1:53:36 AM: Finished saving maven dependencies
1:53:36 AM: Started saving boot dependencies
1:53:36 AM: Finished saving boot dependencies
1:53:36 AM: Started saving rust rustup cache
1:53:36 AM: Finished saving rust rustup cache
1:53:36 AM: Started saving rust cargo bin cache
1:53:36 AM: Finished saving rust cargo bin cache
1:53:36 AM: Started saving go dependencies
1:53:36 AM: Finished saving go dependencies
1:53:39 AM: Build script success
1:53:39 AM: Deploy directory 'public' does not exist
1:53:39 AM: Failing build: Failed to build site
1:53:39 AM: Failed during stage 'building site': Deploy directory 'public' does not exist
1:53:39 AM: Finished processing build request in 49.075060641s

basically it was unable to find the directory... i am not getting that

Imprint and Privacy Policy

Is it possible to add some imprint and privacy policy as subroute ?

so that the website cannot be attacked by lawyers because of data infringements

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.