Skip to content

Instantly share code, notes, and snippets.

View e200's full-sized avatar
👋
I may be slow to respond.

E L E A N D R O e200

👋
I may be slow to respond.
View GitHub Profile
<?php
namespace App\Http\Controllers;
use App\Models\Web\Banner;
use App\Models\Web\Header;
use Illuminate\Http\Request;
use App\Models\Business\Contacto;
class ContactoController extends Controller
.nav li ul {
visibility: collapse;
opacity: 0;
transition-property: opacity, visibility;
transition-duration: $transition-time;
transition-delay: 0s, $transition-time;
}
.nav li:hover ul {
visibility: visible;
@e200
e200 / scrollToTop.js
Last active December 1, 2018 23:29
Scroll to top function
scrollToTop() {
const scrollPosition = document.documentElement.scrollTop
if (scrollPosition > 0) {
window.requestAnimationFrame(this.scrollToTop)
window.scrollTo(0, scrollPosition - (scrollPosition / 8))
}
}
@e200
e200 / ScrollToTop.vue
Last active October 25, 2018 15:52
ScrollToTop.vue
<template>
<a id="scroll-to-top"
class="scroll-to-top"
:class="{ 'is-visible': isVisible }"
href="#"
@click.prevent="scrollToTop">
<i class="fa fa-angle-up"></i>
</a>
</template>
@e200
e200 / jpegoptmin.sh
Created January 28, 2019 13:33
jpeoptmin folder recursive
find -type f -name "*.jpg" -exec jpegoptim --strip-all {} \;
$hamburger-padding: 15px
$hamburger-padding-x: 15px
$hamburger-margin-left-y: -$hamburger-padding
$hamburger-layer-height: 4px
$hamburger-height: ($hamburger-layer-height * 3) + ($hamburger-padding * 2)
@e200
e200 / post-receive.sh
Created September 24, 2019 21:43
Git hook
#!/bin/bash
DEST_FOLDER='/var/www/example'
SOURCE_REPO='~/projects/app.git'
git --work-tree=$DEST_FOLDER --git-dir=$SOURCE_REPO checkout -f
changed_files="$(git diff-tree -r --name-only --no-commit-id HEAD)"
cd $DEST_FOLDER
class ProfilePage extends StatefulWidget {
@override
_ProfilePageState createState() => _ProfilePageState();
}
class _ProfilePageState extends State<ProfilePage>
with AutomaticKeepAliveClientMixin, SingleTickerProviderStateMixin {
TabController _tabController;
@e200
e200 / data.dart
Last active May 18, 2020 23:45
Flutter infinite scroll
final List<Map<String, dynamic>> _posts = [
{
'id': 1,
'title': 'Foo',
'body': 'Lorem',
},
{
'id': 2,
'title': 'Bar',
'body': 'Ipsum',
@e200
e200 / list_view.dart
Last active May 20, 2020 19:22
Flutter infinite scroll
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Posts: ${_posts.length}'),
),
body: Builder(
builder: (context) {
if (_posts.isEmpty) {
return Center(