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
#!/bin/bash | |
# Create an empty dir which contains only the .zip file of your app | |
# Copy this file to your app dir | |
# Save it as `setup.sh` | |
# Then run it via: | |
# docker run --rm -it -p 3000:3000 --volume $PWD:/sandbox ruby:3.2.0-bullseye ./sandbox/setup.sh | |
set -eux |
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
#!/bin/bash | |
# Copy this file to your app dir | |
# Save it as `setup.sh` | |
# Then run it via: | |
# docker run --rm -it -p 3000:3000 --volume $PWD:/app ruby:3.2.0-bullseye ./app/setup.sh | |
set -eux | |
apt update |
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
[@Author::OALDERS/stale modules, build] checking for stale modules... | |
[DZ] beginning to build WWW-Mechanize | |
[@Author::OALDERS/Git::Contributors] multiple names with the same email found: you may want to use a .mailmap file (https://www.kernel.org/pub/software/scm/git/docs/git-shortlog.html#_mapping_authors) | |
[@Author::OALDERS/StaticInstall] setting x_static_install to 1 | |
[@Author::OALDERS/Git::Contributors] Warning: distribution has non-ascii characters in contributor names. META.json will be unparsable on perls <= 5.8.6 when JSON::PP is lower than 2.27300 | |
[DZ] writing WWW-Mechanize in WWW-Mechanize-2.16 | |
[@Author::OALDERS/CopyFilesFromBuild] Copied WWW-Mechanize-2.16/cpanfile to cpanfile | |
[@Author::OALDERS/CopyFilesFromBuild] Copied WWW-Mechanize-2.16/LICENSE to LICENSE | |
[@Author::OALDERS/CopyFilesFromBuild] Copied WWW-Mechanize-2.16/Makefile.PL to Makefile.PL | |
[@Author::OALDERS/CopyFilesFromBuild] Copied WWW-Mechanize-2.16/META.json to META.json |
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
[Trace - 5:25:10 PM] Sending request 'initialize - (0)'. | |
Params: { | |
"processId": 22655, | |
"clientInfo": { | |
"name": "Visual Studio Code", | |
"version": "1.72.0" | |
}, | |
"locale": "en-us", | |
"rootPath": "/Users/olaf/Documents/perl-scratch", | |
"rootUri": "file:///Users/olaf/Documents/perl-scratch", |
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 perl | |
# Mostly borrowed from Code::TidyAll::Plugin::PodSpell | |
use 5.36.0; | |
use Capture::Tiny qw( capture ); | |
use FindBin (); | |
use IPC::Run3 qw( run3 ); | |
use Pod::Spell (); |
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
" Author: Olaf Alders <https://github.com/oalders> | |
" Description: This file adds support for perlimports | |
call ale#Set('perl_perlimports_executable', 'perlimports') | |
function! ale_linters#perl#perlimports#Handle(buffer, lines) abort | |
let l:pattern = '\(.\+\) at \(.\+\) line \(\d\+\)' | |
let l:output = [] | |
for l:match in ale#util#GetMatches(a:lines, l:pattern) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
git clone [email protected]:perl-carton/carton.git | |
cd carton/ | |
perl -Ilib -MLWP::ConsoleLogger::Everywhere script/carton | |
Installing modules using /Users/olafalders/Documents/github/carton/cpanfile | |
GET http://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.48.tar.gz | |
.---------------------------------+--------------. | |
| Request (before sending) Header | Value | | |
+---------------------------------+--------------+ | |
| User-Agent | Menlo/1.9019 | |
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
git branch -m master main | |
git fetch origin | |
git branch -u origin/main main | |
git remote set-head origin -a |
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 perl | |
use strict; | |
use warnings; | |
require Class::Unload; | |
require Import::Into; | |
Class::Unload->unload('Import::Into'); |