Skip to content

Instantly share code, notes, and snippets.

View uF4No's full-sized avatar

Antonio uF4No

View GitHub Profile
@GoodNovember
GoodNovember / BulmaTabTemplate.html
Created February 19, 2019 14:56
Bulma Tab JS Example
<section class="section">
<div class="container">
<div class="tabs" data-content-target="mainTabs">
<ul>
<li class="is-active" data-content="aboutContent"><a>About</a></li>
<li data-content="courseRequirementContent"><a>Course Requirements</a></li>
<li data-content="howToApplyContent"><a>How to Apply</a></li>
<li data-content="contactContent"><a>Contact</a></li>
</ul>
</div>
@lmcneel
lmcneel / remove-node-modules.md
Last active April 18, 2025 19:05
How to remove node_modules after they have been added to a repo

How to remove node_modules

Create a .gitignore file

  1. Check for an existing .gitignore file in the project directory
ls -a
@CiprianSpiridon
CiprianSpiridon / Laravel-Blade-Template-Cheatsheet
Last active January 30, 2025 09:11
Laravel Blade Template Cheatsheet
{{ $var }} - Echo content
{{ $var or 'default' }} - Echo content with a default value
{{{ $var }}} - Echo escaped content
{{-- Comment --}} - A Blade comment
@extends('layout') - Extends a template with a layout
@if(condition) - Starts an if block
@else - Starts an else block
@elseif(condition) - Start a elseif block
@endif - Ends a if block