Skip to content

Instantly share code, notes, and snippets.

View worthmine's full-sized avatar

Yuki Yoshida worthmine

View GitHub Profile
@Grinnz
Grinnz / perl7faq.md
Last active July 8, 2024 11:59
Perl 7 FAQ

Perl 7 FAQ

last updated 2022-05-26

Is Perl 7 coming?

It is the current plan that this version number will be used for Perl at some point in the future.

When is Perl 7 coming?

@mala
mala / yapcjapan2016_lt.md
Last active December 29, 2016 18:08
5分でわかる Perl and web security

5分でわかる Perl and web security

ma.la


CSRFとかXSSとか

  • CSRF: フレームワークの機能使って下さい
  • XSS: Xslateとか自動エスケープして下さい、jsの動的生成はするな
  • 終わり
@subfuzion
subfuzion / global-gitignore.md
Last active July 1, 2024 05:25
Global gitignore

There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's .gitignore is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the node_modules directory) as well as files that are generated (and regenerated) as artifacts of a build process.

All other files should be in your own global gitignore file:

  • Create a file called .gitignore in your home directory and add any filepath patterns you want to ignore.
  • Tell git where your global gitignore file is.

Note: The specific name and path you choose aren't important as long as you configure git to find it, as shown below. You could substitute .config/git/ignore for .gitignore in your home directory, if you prefer.

#!/usr/bin/env perl
use strict;
use warnings;
use LWP::UserAgent;
use XML::Simple;
use URI;
use Perl6::Say;
use Data::Dumper;
use YAML;