This is an example of how LESS can be used to create a semantically remapped calendar component.
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
variable "datacenters" { | |
type = list(string) | |
} | |
variable "image_tag" { | |
default = "v22.3.11-arm64" | |
type = string | |
} | |
job "redpanda" { |
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
pactl load-module module-null-sink sink_name=RecordPlayer | |
pactl load-module module-loopback sink=RecordPlayer |
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
[user] | |
name = Your Name | |
email = [email protected] | |
[push] | |
default = current | |
[alias] | |
# pretty git log | |
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate |
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
# TF aliases | |
alias tf=/usr/bin/terraform | |
alias tfi="tf init -backend-config=backend.tfvars" | |
alias tfp="tf plan" | |
alias tfa="tf apply" |
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/local/bin/fontforge | |
Open($1) | |
Generate($1:r + ".otf") | |
Generate($1:r + ".ttf") | |
Generate($1:r + ".svg") | |
Generate($1:r + ".woff") | |
Generate($1:r + ".woff2") |
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
/* Usage | |
* {{detokenize 'extraValue'}} */ | |
import Ember from 'ember'; | |
const { get, inject } = Ember; | |
export default Ember.Helper.extend({ | |
session: inject.service(), | |
compute(params) { |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
router: Ember.computed(function() { | |
return Ember.getOwner(this).lookup('router:main'); | |
}), | |
zeCurrentRoute: Ember.computed.alias('router.currentRouteName') |
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
// dependencies | |
var fs = require("fs"); | |
var postcss = require("postcss"); | |
var atImport = require("postcss-import"); | |
var nested = require("postcss-nested"); | |
var reference = require("postcss-reference"); | |
var file = "style.css"; | |
// css to be processed |
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
/* Move this file into src/ folder */ | |
var gulp = require('gulp'); | |
var postcss = require('gulp-postcss'); | |
var atImport = require('postcss-import'); | |
var nested = require('postcss-nested'); | |
var reference = require('postcss-reference'); | |
var mqpacker = require('css-mqpacker'); | |
gulp.task('css', function () { | |
return gulp.src('./src/*.css') |
NewerOlder