personal-website | personal website built using ReactJS and Bulma as the CSS | Portfolio library

 by   jcoelho93 JavaScript Version: 1.3.3 License: MIT

kandi X-RAY | personal-website Summary

kandi X-RAY | personal-website Summary

personal-website is a JavaScript library typically used in Web Site, Portfolio, React applications. personal-website has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

This is my personal website built using ReactJS and Bulma as the CSS framework. Live here. The personal information on the website is populated from a json file that follows the JSON Resume open source standard.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              personal-website has a low active ecosystem.
              It has 138 star(s) with 78 fork(s). There are 8 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 1 open issues and 5 have been closed. On average issues are closed in 353 days. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of personal-website is 1.3.3

            kandi-Quality Quality

              personal-website has 0 bugs and 0 code smells.

            kandi-Security Security

              personal-website has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              personal-website code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              personal-website is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              personal-website releases are available to install and integrate.
              Installation instructions, examples and code snippets are available.
              It has 64 lines of code, 0 functions and 21 files.
              It has low code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed personal-website and discovered the below as its top functions. This is intended to give you an instant insight into personal-website implemented functionality, and help decide if they suit your requirements.
            • Generate a Grip .
            • Timeline timeline
            • hero response body
            • Creates an article object .
            • Theme section
            • A footer .
            • progress bar progress
            • Track a timeline item .
            • A badge .
            • Builds the skills bar .
            Get all kandi verified functions for this library.

            personal-website Key Features

            No Key Features are available at this moment for personal-website.

            personal-website Examples and Code Snippets

            Data transfer
            Pythondot img1Lines of Code : 3dot img1no licencesLicense : No License
            copy iconCopy
            $ heroku addons:add pgbackups
            
            
            $ pg_dump -h localhost  -Fc library  > db.dump
            
            
            $ heroku pgbackups:restore DATABASE http://www.example.com/db.dump
            
              

            Community Discussions

            QUESTION

            How do I enable HTTPS on my Nginx server on Oracle cloud
            Asked 2022-Feb-21 at 08:52

            So I am trying to setup https on my website, hosted on oracle cloud vm, running ubuntu. The website works fine without https, but I would rather it working with https. My domain name: rayyanshikoh.ga (got through freenom for learning and testing)

            My configuration file:

            ...

            ANSWER

            Answered 2022-Feb-21 at 08:52

            The issue can be that the security lists are not configured to allow traffic over 443 port.

            Please check the security list attached to the VM and add a rule to allow 0.0.0.0: 443 ingress traffic.

            Please try to follow this guide on how to configure security lists.

            https://tutorialforlinux.com/2020/03/22/oracle-oci-compute-ubuntu-18-04-instance-open-port-443/2/

            Disclaimer: I currently work for OCI, thoughts are my own and does not represent Oracle or OCI in any way.

            Source https://stackoverflow.com/questions/71127772

            QUESTION

            NextJS getting error on the first npm run dev
            Asked 2022-Feb-17 at 16:09

            I don't know what is going on with my PC but every time I create the NextJS application and run development. It will return this error

            ...

            ANSWER

            Answered 2022-Feb-17 at 16:09

            I manage to create the nextJS project on Users/ directory and it turns out to fix the error. Before that, I created the project outside of Users/ directory (directly on C: and create folder on there). So maybe it was a permission thing that make the project can't run.

            Source https://stackoverflow.com/questions/71125476

            QUESTION

            Trying to center text vertically and horizontally next to an image
            Asked 2022-Feb-13 at 01:54

            https://github.com/Yankysamurai/Personal-Website-P5

            I am new to posting questions but I am trying to center my text "Welcome to my site" horizontally and vertically. I want it half the distance from the image and from the right margin. I tried display flex but it didn't work.

            I just opened a git hub account so I hope you can see the code from the link.

            Thank you.

            ...

            ANSWER

            Answered 2022-Feb-13 at 01:43

            So, the flex container has an img and h2. In order to vertically center the text (relative to the image), you need to set align-items: center;

            Source https://stackoverflow.com/questions/71097218

            QUESTION

            CSS nth-child(1) is not showing up with full page sections
            Asked 2021-Dec-18 at 02:56

            I have 4

            tags in my HTML, and in my CSS, and I have these color variables:

            ...

            ANSWER

            Answered 2021-Dec-18 at 02:31

            It does not work as intended, because nth-child(1) stands for

            element here. It is because nth-child() selector counts all the child elements, regardless of the type.

            You can solve it either by counting from the second child...

            Source https://stackoverflow.com/questions/70400212

            QUESTION

            Ajax Requests with node server in another folder
            Asked 2021-Dec-17 at 13:50

            So i'm new in JS and i have a task for mastering Ajax Requests.I should send an email input from form to the server and a lot more,but i can not figure out how to send this data to a server that is in another folder.I lost all my nerves with this task and i dont know what to do. So,i have a folder personal-website-server and another folder src where is my project,both folders are in another folder,the parent. It looks like this :
            ./
            dist < webpack bundle folder
            node_modules
            personal-website-server
            / package.json in personal-website-server
            src
            and package.json in the parent folder Image for more understanding:

            So,i should do this:
            Upon clicking on the "Subscribe" button, implement the functionality for sending a user email to the server. For that, make POST Ajax request using http://localhost:3000/subscribe endpoint. The call to the server should only be made when the form is valid (the validate function )
            The connection is made through a proxy to the server,idk how this thing works and i get it hard to do this task because its not so described.
            Codes:
            I created fetch.js in src that checks if email is valid and sends it to the server,like i understood:

            ...

            ANSWER

            Answered 2021-Dec-17 at 13:50

            I fixed the problem,it was in the webpack.config.js.I didnt listened to the apis and now it is like this :

            Source https://stackoverflow.com/questions/70379593

            QUESTION

            Move object with Easing – not working properly in Safari
            Asked 2021-Mar-16 at 14:22

            I created a custom cursor with JavaScript. – At the end of this question, I will add all the code, there is also a fiddle here: https://jsfiddle.net/8a9f2s0n/ …but what's really important is the following line of CSS: transition: all .1s ease-out;

            Basically I'm deleting the actual cursor and then I'm chaining two circles to the mouse position, the second circle ("cursor2") has this CSS-property: transition: all .1s ease-out;, to make it move with some easing.

            The Problem: I tested this code in all the big browsers and it's really smooth everywhere, except for Safari, in Safari the second, larger, circle move REALLY laggy.

            What's going on?

            ...

            ANSWER

            Answered 2021-Mar-16 at 14:22

            It seems like in Safari every time the transition property is updated it resets the transition effect. This is causing the lag effect. To get around this you can throttle the code that updates cursor2 position using underscore throttle function or your preferred implementation.

            Example is below:

            Source https://stackoverflow.com/questions/66033305

            QUESTION

            Webpage Section Background is being cutoff on mobil device
            Asked 2021-Mar-01 at 22:23

            I'm trying my hand at building a website from scratch to act as an online CV for networking and job/school applications. I'm very new to html and css, only started about 5 months ago. For the most part, everything has been working out just fine. The only issue is that on mobile devices the background on sections on my page are being cutoff where I would like them to trail to the end of the screen (the right side). On the desktop, it looks just fine. Any help or suggestions would be appreciated. I'm kinda at a loss on what to do.

            Here is the HTML and CSS from my page:

            ...

            ANSWER

            Answered 2021-Feb-26 at 23:28

            the root of your problem is that you have hardcoded the widths of some elements.

            On mobile screens these elements are wider than the viewport or screen width, so come content extends off the right-hand side of the screen. This leads to the problem you describe as well as other issues.

            This is also the reason why the problem got worse when you added the viewport meta tag

            Some of the elements I noticed that have hard-coded widths that cause a problem are

            Source https://stackoverflow.com/questions/66382764

            QUESTION

            Gatsby Config Not Changing Color Theme
            Asked 2020-Oct-30 at 10:27

            I'm new to static site development for blogs and am trying to use Gatsby. I've tried to change the background and theme color of a starter from pink (#ed64a6) to purple (#702da1). However when I put it into the gatsby-config.js and run gatsby develop nothing changes.

            This is gatsby-config.js:

            ...

            ANSWER

            Answered 2020-Oct-30 at 10:27

            background_color property from gatsby-plugin-manifest stands for PWA (Progressive Web Apps) features, not for the main background-color CSS property.

            To change the styling for any component or element, just add a CSS/SCSS, JS, modules, etc:

            Source https://stackoverflow.com/questions/64594093

            QUESTION

            Pipenv install does not install everything from Pipfile
            Asked 2020-Aug-23 at 12:06

            I am running this on a fresh Ubuntu 20.04 install:

            pipenv install with Pipfile:

            ...

            ANSWER

            Answered 2020-Aug-22 at 18:07

            setuptools, pip and wheel are a part of python package and come preinstalled. Just keep them updated to the latest version.

            Source https://stackoverflow.com/questions/63539443

            QUESTION

            bootstrap navbar wrapping around phone
            Asked 2020-Aug-16 at 00:31

            I am using bootstrap 3.4.1 and I am having and issue with the navbar on phone (e.g. S9 ) The menu icon ends up going to new line. So I did col-xs-11 and col-xs-1 but still doesn't work. Here is the code:

            ...

            ANSWER

            Answered 2020-Aug-16 at 00:31

            Firstly ditch the column constructs inside the bootstrap navbar. It was never intended for .row and .col- usage.

            Because your .navbar-brand content is oversized for the S9 or any mobile device, it breaks the bootstrap mobile nav. Bootstrap 3 does not account for such oversized brand content. This is why flex is awesome in bootstrap 4.

            Anyway with a few css tweeks (hacks) we can get the .navbar-brand content to break onto the next line, rather than the .navbar-toggle icon going to the next line.

            See responsive example here... https://jsfiddle.net/joshmoto/k8c9uj7q/

            Source https://stackoverflow.com/questions/63426114

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install personal-website

            Update the resume.json with your personal information (check JSON Resume).
            Clone the repo:
            Update the resume.json with your personal information (check JSON Resume)
            Install dependencies and run build command:

            Support

            Feel free to fork this project and customize with your personal info. If you implement any nice features or improvements I'd really appreciate if you could open a PR to this project ;).
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/jcoelho93/personal-website.git

          • CLI

            gh repo clone jcoelho93/personal-website

          • sshUrl

            git@github.com:jcoelho93/personal-website.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular Portfolio Libraries

            pyfolio

            by quantopian

            leerob.io

            by leerob

            developerFolio

            by saadpasta

            PyPortfolioOpt

            by robertmartin8

            eiten

            by tradytics

            Try Top Libraries by jcoelho93

            adminator

            by jcoelho93PHP

            shell-database

            by jcoelho93Python

            node-crud-api

            by jcoelho93JavaScript

            python-project-template

            by jcoelho93Python

            jupyter-notebooks

            by jcoelho93Jupyter Notebook