Skip to content

Instantly share code, notes, and snippets.

$ perl Configure.pl --gen-moar
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From https://github.com/perl6/nqp
05c5d89..1658541 master -> origin/master
HEAD is now at 13ef89d... bump rev for waitpid fix
Building NQP ...
/usr/bin/perl Configure.pl --prefix=/home/siddhant/rakudo/install --backends=moar --make-install --gen-moar
siddhant@siddhant-PC ~/rakudo> perl Configure.pl --gen-parrot
HEAD is now at 13ef89d... bump rev for waitpid fix
/home/siddhant/rakudo/install/bin/parrot is Parrot RELEASE_5_9_0.
Building NQP ...
/usr/bin/perl Configure.pl --prefix=/home/siddhant/rakudo/install --backends=parrot --make-install
Verifying installation ...
Using /home/siddhant/rakudo/install/bin/parrot.exe (version RELEASE_5_9_0).
* configure package dyncall
guess operating system cygwin
guess arch x86
@Siddhant
Siddhant / build log for nqp on jvm
Last active August 29, 2015 13:57
building nqp
$ perl Configure.pl --gen-nqp --backends=jvm
HEAD is now at 83c0d27... Bump MOAR_REVISION for native call support.
Building NQP ...
/usr/bin/perl Configure.pl --prefix=/home/siddhant/rakudo/install --backends=jvm --make-install
Using java version "1.7.0_51"
Cleaning up ...
/usr/bin/perl -MExtUtils::Command -e mkpath bin
javac -source 1.7 -cp 3rdparty/asm/asm-4.1.jar:3rdparty/asm/asm-tree-4.1.jar:3rdparty/jline/jline-1.0.jar:3rdparty/jna/jna.jar -g -d bin src/vm/jvm/runtime/org/perl6/nqp/io/*.java src/vm/jvm/runtime/org/perl6/nqp/jast2bc/*.java src/vm/jvm/runtime/org/perl6/nqp/runtime/*.java src/vm/jvm/runtime/org/perl6/nqp/sixmodel/*.java src/vm/jvm/runtime/org/perl6/nqp/sixmodel/reprs/*.java src/vm/jvm/runtime/org/perl6/nqp/tools/*.java
src\vm\jvm\runtime\org\perl6\nqp\runtime\BootJavaInterop.java:25: error: package org.objectweb.asm does not exist
@Siddhant
Siddhant / log
Created March 29, 2014 23:16
parrot/nqp build fails
$ perl Configure.pl --gen-parrot
sh: /home/siddhant/rakudo/install/bin/parrot: No such file or directory
HEAD is now at 83f5f9d... bump moar rev to get public real_data helper
sh: /home/siddhant/rakudo/install/bin/parrot: No such file or directory
D editor/parrot.el
HEAD is now at 2392887... Release 6.1.0
Configuring Parrot ...
/usr/bin/perl Configure.pl --optimize --prefix=/home/siddhant/rakudo/install
Parrot Version 6.1.0 Configure 2.0
@Siddhant
Siddhant / 2bit AND.cir
Created February 5, 2015 12:20
[ngspice] 2bit AND simulation
.title AND gate simulation
A1 [1 2] 3 and
.model and d_and(rise_delay=0.1ps fall_delay=0.2ps)
* now test it
Asource [1 2] d_source_model
.model d_source_model d_source(input_file="2bit_input_for_AND")
.tran 1ns 50ns
@Siddhant
Siddhant / 2bit AND.cir
Created February 9, 2015 06:42
wrong plots
.title AND gate simulation
A1 [1 2] 3 and
.model and d_and(rise_delay=0.1ps fall_delay=0.2ps)
* now test it
Asource [1 2] d_source_model
.model d_source_model d_source(input_file="2bit_input_for_and") ;note that only lowercase file names are allowed
.tran 1ns 60ns
@Siddhant
Siddhant / keybase.md
Created March 2, 2015 23:15
keybase.md

Keybase proof

I hereby claim:

  • I am siddhant on github.
  • I am siddhant (https://keybase.io/siddhant) on keybase.
  • I have a public key whose fingerprint is 8BB6 BB75 EC82 678E A43F 6721 45F7 472D 16AD CECF

To claim this, I am signing this object:

@Siddhant
Siddhant / terminal output
Created February 11, 2012 22:44
running bootstrap.sh for panda
siddhant@siddhant-laptop:~/panda$ sh ./bootstrap.sh
use of uninitialized value of type Command in string context
--2012-02-12 04:05:50-- http://feather.perl6.nl:3000/list
Resolving feather.perl6.nl... 193.200.132.135, 2a02:2308:10::f:1
Connecting to feather.perl6.nl|193.200.132.135|:3000... failed: Connection timed out.
Connecting to feather.perl6.nl|2a02:2308:10::f:1|:3000... failed: Network is unreachable.
Any()
Method 'at_key' not found for invocant of class 'Any'
in block <anon> at bin/panda:12
in method postcircumfix:<{ }> at src/gen/CORE.setting:1195
@Siddhant
Siddhant / bootstrap.sh output
Created February 11, 2012 23:35
panda installed !
siddhant@siddhant-laptop:~/panda$ sh ./bootstrap.sh
use of uninitialized value of type Command in string context
==> Installing panda from a local directory '.'
==> panda depends on File::Tools, JSON::Tiny, Test::Mock
==> Fetching File::Tools
==> Building File::Tools
==> Testing File::Tools
t/01-file-find.t ...... ok
t/02-shell-command.t .. ok
All tests successful.
@Siddhant
Siddhant / gist:1986576
Created March 6, 2012 14:34
temporarily confused !
> for map { $_, $_}, 1..3 { .say;}
Confused
> for map {$_, $_}, 1..3 {.say;}
1
1
2
2
3
3
> for map { $_, $_}, 1..3 { .say;}