- one a. A i. one ii. two b. B
- two
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
# /etc/udev/rules.d/90-rodecaster-pro-ii.rules | |
# RODECaster Pro II primary USB interface: 19f7:0030 | |
# RODECaster Pro II secondary USB interface: 19f7:0026 | |
# We're only concerned with the former. | |
# PulseAudio | |
ATTRS{idVendor}=="19f7", ATTRS{idProduct}=="0030", ENV{PULSE_PROFILE_SET}="rodecaster-pro-ii.conf" | |
# PipeWire |
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
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="pattern"> | |
<test qual="any" name="family"> | |
<string>Symbola</string> | |
</test> | |
<test qual="any" name="prgname" compare="contains"> | |
<string>chrom</string> | |
</test> |
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
if !has('gui_running') | |
for s:chr in map(range(char2nr('!'), char2nr('~')), 'nr2char(v:val)') | |
let s:key = get({'\': 'M-Bslash', '>': 'M-char-62', '[': '', ']': '', 'O': '', 'P': ''}, s:chr, 'M-' . s:chr) | |
if len(s:key) | |
exe escape("set <" . s:key . ">=\e" . s:chr, '\|"') | |
endif | |
endfor | |
exe "set <M-Space>=\e\\ " | |
exe "set <M-CR>=\e\r" | |
endif |
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
/* ~/.config/gtk-3.0/gtk.css */ | |
@import url("file:///usr/share/themes/Emacs/gtk-3.0/gtk-keys.css"); | |
@binding-set gtk-alt-clipboard { | |
bind "<alt>x" { "cut-clipboard" () }; | |
bind "<alt>c" { "copy-clipboard" () }; | |
bind "<alt>v" { "paste-clipboard" () }; | |
} |
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
ActiveRecord::Base.connection.select_all(scope.arel).tap do |result| | |
result.map do |attrs| | |
attrs.each do |k, v| | |
attrs[k] = result.column_types[k].type_cast(v) | |
end | |
end | |
end |
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
if !exists('s:path') | |
if type(get(g:, 'lua_path')) == type([]) | |
let s:path = g:lua_path | |
else | |
let s:path = split(system('lua -e "print(package.path)"')[0:-2], ';') | |
if v:shell_error | |
let path = [] | |
endif | |
endif | |
endif |
I hereby claim:
- I am tpope on github.
- I am tpope (https://keybase.io/tpope) on keybase.
- I have a public key whose fingerprint is 8818 04A5 DA54 1152 FA12 C105 E09E 474A 404A 3A45
To claim this, I am signing this object:
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
grading_period = @context.courses.map do |course| | |
GradingPeriod.context_find(course, params[:grading_period_id]) | |
end.compact.first |
NewerOlder