Skip to content

Instantly share code, notes, and snippets.

View haodemon's full-sized avatar
:octocat:
compiling...

Alfred S. haodemon

:octocat:
compiling...
  • IPONWEB
  • Berlin, Germany
  • 12:45 (UTC +02:00)
View GitHub Profile
@ivan-krukov
ivan-krukov / perl-cpp-arrays.pl
Created November 5, 2013 20:26
Using Perl Inline::CPP and perlapi to pass around array data
#!/usr/bin/perl
use warnings;
#not sure how to use strict here - does not allow bareword in "Inline CPP"
use Inline CPP;
my @data = (0..10);
my $result_ref = do_stuff(\@data);
my @result = @$result_ref;
print "@result\n";
__END__
__CPP__
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active May 14, 2025 04:34
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@magnetikonline
magnetikonline / README.md
Last active April 24, 2025 14:47
Bash string manipulation cheatsheet.

Bash string manipulation cheatsheet

Assignment
Assign value to variable if variable is not already set, value is returned.

Combine with a : no-op to discard/ignore return value.
${variable="value"}
: ${variable="value"}