Skip to content

Instantly share code, notes, and snippets.

View ibahas's full-sized avatar

Ibrahim Abu Hassanein ibahas

View GitHub Profile
@ibahas
ibahas / index.pug
Created March 5, 2024 09:27
Responsive infographic with CSS variables
- var data = [
- {
- clist: ['#f6ba96', '#e2795b'],
- title: 'gingerbread',
- ptext: 'Soufflé cake brownie ice cream'
- },
- {
- clist: ['#a2d5d0', '#8dcbbc'],
- title: 'brownie',
- ptext: 'Soufflé cake brownie ice cream'
@ibahas
ibahas / sheets.json
Created February 10, 2024 10:49
JSON object exported by the 'Sheets™ to JSON' Google Sheets™ addon.
{}
@ibahas
ibahas / index.html
Created February 1, 2024 14:23
Verification Code - Pure HTML, CSS, JS
<div id="wrapper">
<div class="verify-code">
<input class="form-control code-1" tabindex="0" type="number" maxlength="1" size="1" min="0" max="9" />
<input class="form-control code-2" tabindex="1" type="number" maxlength="1" size="1" min="0" max="9" />
<input class="form-control code-3" tabindex="2" type="number" maxlength="1" size="1" min="0" max="9" />
<input class="form-control code-4" tabindex="3" type="number" maxlength="1" size="1" min="0" max="9" />
</div>
<h1></h1>
</div>
@ibahas
ibahas / AlbumController.php
Created November 1, 2019 13:44
Problem in my controller to upload multiple images and save in database .
<?php
namespace App\Http\Controllers;
use App\album;
use Illuminate\Http\File;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
class AlbumController extends Controller