Skip to content

Instantly share code, notes, and snippets.

View hobo71's full-sized avatar

Joseph Martinez hobo71

  • Sapiens Space Exploration & Colonization Agency - SSECA
  • CaliFornia
View GitHub Profile
@hobo71
hobo71 / all_lint_rules.yaml
Created October 15, 2020 14:32 — forked from rydmike/all_lint_rules.yaml
List of ALL Dart & Flutter linter rules
linter:
rules:
- always_declare_return_types
- always_put_control_body_on_new_line
- always_put_required_named_parameters_first
- always_require_non_null_named_parameters
- always_specify_types
- always_use_package_imports
- annotate_overrides
- avoid_annotating_with_dynamic
@hobo71
hobo71 / Readme.md
Created September 3, 2020 17:03 — forked from corrafig/Readme.md
Kiosk mode for lovelace

Kiosk mode

Installation

Add kiosk.js file with the content below to your www folder in config.

Like any other custom script, use ui-lovelace.yaml resources section to reference the kiosk.js file.

Make sure you add kiosk somewhere in your URL. You can use it in the id of your view or in the query string.

@hobo71
hobo71 / easiest-flex-grid-ever.markdown
Created August 26, 2020 16:04
Easiest Flex Grid Ever

Easiest Flex Grid Ever

A responsive grid based on flexbox. Requires only two classes to function, and is infinitely expandable! I also added a semantic version.

A Pen by Tania Rascia on CodePen.

License.

@hobo71
hobo71 / mixins.scss
Created August 22, 2020 03:33
IE 11 - CSS Grid - SASS mixins
// Ensure CSS grid works with IE 11 spec.
// https://css-tricks.com/browser-compatibility-css-grid-layouts-simple-sass-mixins/
// sass-lint:disable no-vendor-prefixes, no-duplicate-properties
@mixin display-grid {
display: -ms-grid;
display: grid;
}
// $columns values should be delimited by a space
@mixin grid-template-columns($columns...) {
@hobo71
hobo71 / futuristic-3d-hover-effect.markdown
Created July 30, 2020 02:17
Futuristic 3D Hover Effect 🛸

Futuristic 3D Hover Effect 🛸

🛸

Usable as navigation, menu or effect

It uses CSS transform and perspective to create a unique hololens-like animation effect.

Can be used for many more use cases, you will probably have your own ideas.

This is an experimental idea, you may want to flesh it out for use in production.

@hobo71
hobo71 / index.html
Created July 30, 2020 02:15
Radial menu
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<section>
<div class="nav">
<ul class="radial-nav">
<li data-content="js"><a href="#">JS</a></li>
<li data-content="css"><a href="#">CSS</a></li>
<li data-content="html5"><a href="#">HTML5</a></li>
<li data-content="jade"><a href="#">JADE</a></li>
<li data-content="git"><a href="#">GIT</a></li>
<li data-content="grunt"><a href="#">GRUNT</a></li>
@hobo71
hobo71 / index.html
Created July 30, 2020 01:45
Untitled Slider
<div class="untitled">
<div class="untitled__slides">
<div class="untitled__slide">
<div class="untitled__slideBg"></div>
<div class="untitled__slideContent">
<span>London</span>
<span>Scout</span>
<a class="button" href="https://unsplash.com/@scoutthecity" target="/black">Unsplash Profile</a>
</div>
@hobo71
hobo71 / handwriting-svg-animation.markdown
Created July 30, 2020 01:37
Handwriting: SVG animation
@hobo71
hobo71 / floating-animation-css.markdown
Created July 30, 2020 01:35
Floating Animation - CSS
@hobo71
hobo71 / bulma-sass-scss.rb
Created April 3, 2020 06:07 — forked from j1mc/bulma-sass-scss.rb
Convert bulma from sass to scss
#!/usr/bin/env ruby
require 'tmpdir'
require 'fileutils'
dir = Dir.tmpdir()
if File.directory?("#{dir}/bulma")
FileUtils.remove_dir("#{dir}/bulma")
end