Skip to content

Instantly share code, notes, and snippets.

View universvm's full-sized avatar
💎

Leonardo Castorina universvm

💎
View GitHub Profile
@bryanlimy
bryanlimy / setup.md
Last active November 8, 2021 10:34
School of Informatics Setup
@a7madgamal
a7madgamal / dark.md
Last active July 14, 2023 04:00
Dark mode for Slack on MacOS
@schutt
schutt / README.md
Last active June 13, 2023 17:50
A tree with links between branches.
@jqtrde
jqtrde / sketch-shortcuts.md
Created July 14, 2014 13:44
Sketch Keyboard Shortcuts
  • Zoom
    • CMD 0 100%
    • CMD 1 Entire project
    • CMD 2 Zoom to selected object
  • Hide/Show Sidebars
    • CMD ALT 1 Hide left sidebar
    • CMD ALT 2 Hide right ridebar
    • CMD ALT 3 Hide both
    • CMD . Presentation mode
  • CTRL R Ruler
@jimhester
jimhester / append.pl
Last active January 8, 2018 14:50
Parsing fasta files in perl ruby python and go
#!/usr/bin/env perl
use warnings;use strict;
my ($header,$sequence);
$header = <>;
chomp $header;
while(my $line = <>){
chomp $line;
if($line =~ /^>/){