This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="app"> | |
<ul class="trails"> | |
<li class="trail"> | |
<div class="caption" :class="sectionsClasses.section_1">El 1</div> | |
</li> | |
<li class="trail"> | |
<div class="caption" :class="sectionsClasses.section_2">El 2</div> | |
</li> | |
<li class="trail"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"arabic": [ | |
"aghoneim92", | |
"Islam888", | |
"kmelkon", | |
"lelbil", | |
"nrifki", | |
"OsamaNabih", | |
"TaqwaR" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("gitter.im") { | |
/* Header */ | |
header.header, | |
.header .header-main-menu { | |
height: 3.5rem !important; | |
} | |
/* Left panel */ | |
.body .layout-minibar { | |
width: 3.5rem; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// VueX-toast SASS style file with a helper mixin for new types | |
// | |
// License: MIT | |
// | |
// Authors: | |
// - ktns (https://github.com/ktns) | |
// - mtancoigne (https://experimentslabs.com/users/administrator) | |
// | |
// Project page: https://github.com/ktsn/vuex-toast | |
// Matches with version: 0.1.3 (not tested on previous versions) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# Display branch statuses | |
# | |
# @author Manuel Tancoigne <[email protected]> | |
# @license MIT | |
# @version 0.2.3 | |
# | |
# Requirements |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# Find non-existing entries in gitignore | |
# | |
# For reference: https://git-scm.com/docs/gitignore | |
# | |
# @author Manuel Tancoigne <[email protected]> | |
# @license MIT | |
# @version 0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# Find projects with outdated dependencies | |
# | |
# Usage: | |
# airsec <gem> | |
# airsec <gem> [[min version] max version] | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# Gems: | |
# gem install tty-option rugged skittlize activesupport pastel | |
require 'tty-option' | |
require 'rugged' | |
require 'skittlize' | |
require 'active_support/deprecator' # Required for active_support to work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# Searches for a committed string in project repositories | |
# | |
# Usage: | |
# git-grep-apps <string> | |
# | |
# This script will search for a configuration file on the current directory or its parents when not found. | |
# |
OlderNewer