I hereby claim:
- I am rodjek on github.
- I am rodjek (https://keybase.io/rodjek) on keybase.
- I have a public key ASC7CNRlpA-1t5WuR-nH2PJoyCoFb9Uhra3DJ0x-eJen4go
To claim this, I am signing this object:
| #!/bin/bash | |
| APPIMAGE="${HOME}/Applications/GoldenDict-ng.AppImage" | |
| APPIMAGE_FOLDER=$(dirname "${APPIMAGE}") | |
| APPIMAGE_LINK="https://github.com/pkgforge-dev/GoldenDict-ng-AppImage/releases/download/26.8.0-1%402026-09-01_1788277826/GoldenDict-ng-26.8.0-1-anylinux-x86_64.AppImage" | |
| DESKTOP_FILE="${HOME}/.local/share/applications/goldendict-ng.desktop" | |
| DESKTOP_FOLDER=$(dirname "${DESKTOP_FILE}") | |
| ICON="https://raw.githubusercontent.com/xiaoyifang/goldendict-ng/refs/heads/staged/icons/programicon.png" | |
| mkdir -p "${APPIMAGE_FOLDER}" | |
| if [ ! -f "${APPIMAGE}" ]; then |
| local altarName = "bloodmagic:altar_0" | |
| local inputName = "minecraft:barrel_0" | |
| local outputName = "minecraft:barrel_1" | |
| local altar = peripheral.wrap(altarName) | |
| local input = peripheral.wrap(inputName) | |
| local output = peripheral.wrap(outputName) | |
| function getAltarItem() | |
| local stack = altar.getItemDetail(1) |
| require 'rspec' | |
| require 'facter' | |
| describe 'facter_value' do | |
| context 'when stubbing Facter::Util::Collection#fact' do | |
| before(:each) do | |
| stub_fact = instance_double(Facter::Util::Fact, :value => 'foo') | |
| allow(Facter.collection).to receive(:fact).with(:test_fact).and_return(stub_fact) | |
| end |
| iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1') | |
| choco -y install ruby vim |
I hereby claim:
To claim this, I am signing this object:
| <csvx:document xmlns:csvx="http://lol"> | |
| <csvx:header> | |
| <csvx:value>title 1</csvx:value> | |
| <csvx:value>title 2</csvx:value> | |
| <csvx:value>title 3</csvx:value> | |
| </csvx:header> | |
| <csvx:row> | |
| <csvx:value>item1</csvx:value> | |
| <csvx:value>item2</csvx:value> | |
| <csvx:value>item3</csvx:value> |
| class foo( | |
| $bar, | |
| $baz = true, | |
| $gronk = false, | |
| ) { | |
| # ... | |
| } |
| $hosts = ['hosta','hostb','hostc'] | |
| range(0,count($hosts)-1).each |$num| { | |
| $port = 8080 + $num | |
| somemodule::someservice { $hosts[$num]: | |
| listening_port => $port, | |
| } | |
| } |
| class foo($template = 'foo.erb') { | |
| file { '/tmp/foo': | |
| source => $template, | |
| } | |
| } | |
| # Use generic template | |
| class { 'foo': } | |
| # Override the template |