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
// rev 452 | |
/******************************************************************************** | |
* * | |
* Author : Angus Johnson * | |
* Version : 6.1.3 * | |
* Date : 19 January 2014 * | |
* Website : http://www.angusj.com * | |
* Copyright : Angus Johnson 2010-2014 * | |
* * | |
* License: * |
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
{ | |
"point_left": "\ud83d\udc48", | |
"mailbox_with_mail": "\ud83d\udcec", | |
"timer": "\u23f2", | |
"grinning": "\ud83d\ude00", | |
"yum": "\ud83d\ude0b", | |
"strawberry": "\ud83c\udf53", | |
"ice_skate": "\u26f8", | |
"middle_finger_tone2": "\ud83d\udd95\ud83c\udffc", | |
"star_and_crescent": "\u262a", |
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
def sine(input, amplitude, phase, frequency = nil, angular_frequency = nil) | |
if frequency | |
amplitude * Math.sin(2 * Math::PI * frequency * input + phase) | |
elsif angular_frequency | |
amplitude * Math.sin(angular_frequency * input + phase) | |
else | |
raise "Either frequency or angular_frequency is required" | |
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
{ | |
"arch": [ | |
"arm", | |
"armeb", | |
"aarch64", | |
"aarch64_be", | |
"aarch64_32", | |
"arc", | |
"avr", | |
"bpfel", |
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
{ | |
"arch": [ | |
"arm", | |
"armeb", | |
"aarch64", | |
"aarch64_be", | |
"aarch64_32", | |
"arc", | |
"avr", | |
"bpfel", |
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
apt update | |
apt install -y adwaita-icon-theme autopoint build-essential chrpath cm-super-minimal dconf-gsettings-backend dconf-service debhelper dh-autoreconf dh-strip-nondeterminism doxygen doxygen-latex fontconfig fontconfig-config fonts-dejavu-core gettext ghostscript gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-pango-1.0 gir1.2-rsvg-2.0 git glib-networking glib-networking-common glib-networking-services graphviz gsettings-desktop-schemas gsfonts hicolor-icon-theme intltool-debian libarchive-zip-perl libatspi2.0-0 libavahi-client3 libbz2-dev libcdt5 libcgraph6 libcolord2 libcroco3 libcups2 libcupsimage2 libdatrie1 libdconf1 libdjvulibre-dev libepoxy0 libexpat1-dev libfftw3-bin libfftw3-dev libfftw3-double3 libfftw3-long3 libfftw3-quad3 libfftw3-single3 libfile-stripnondeterminism-perl libfontconfig1 libfontconfig1-dev libfreetype6-dev libfribidi-dev libgd3 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common libgdk-pixbuf2.0-dev libglib2.0-bin libglib2.0-dev libgraphite2-3 libgraphviz-dev libgs-dev libgs9 libgs9-co |
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
require "cadmium_transliterator" | |
module EnsureSlug | |
macro included | |
before_save generate_slug_if_not_exists | |
end | |
def generate_slug_if_not_exists | |
title.value.try do |title| | |
if !slug.value || slug.value.try &.empty? |
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
{ | |
"https://crystal-lang.org": "The Crystal Programming Language", | |
"https://crystal-lang.org/community": "Community - The Crystal Programming Language", | |
"https://crystal-lang.org/blog": "Blog - The Crystal Programming Language", | |
"https://crystal-lang.org/2014/06/19/crystal-0.1.0-released.html": "Crystal 0.1.0 released! - The Crystal Programming Language", | |
"https://crystal-lang.org/api": "README - github.com/crystal-lang/crystal", | |
"http://crystal-lang.org/docs": "Introduction · GitBook", | |
"http://crystal-lang.org/installation/": "Page not found - The Crystal Programming Language", | |
"http://crystal-lang.org": "The Crystal Programming Language", | |
"http://crystal-lang.org/community": "Community - The Crystal Programming Language", |
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
require "octokit" | |
client = Octokit.client(access_token: "***********************************0a937") | |
puts "Fetching repositories" | |
repos = client.repositories("watzon").fetch_all | |
puts "Selecting forks" | |
repos = repos.select { |r| r.fork == true } |