This file contains hidden or 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
curl https://api.truevault.com/v1/vaults/12345678-1234-1234-1234-123456789012/documents \ | |
-u [api-key]: \ | |
-X POST \ | |
-d "document=eyJtZXNzYWdlIjoiV2UgbG92ZSB5b3VyIGN1cmlvc2l0eSEgIENvbWUgd29yayB3aXRoIHVzIGFuZCBsZXQncyBnbyBtYWtlIGluc2FuZWx5IGdyZWF0IHByb2R1Y3RzISIsImNvbnRhY3QiOiJoYWNrQHRydWV2YXVsdC5jb20ifQ==" |
This file contains hidden or 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
libSDL-1_2-0-1.2.15-5.1.2.x86_64 | |
libSDL-devel-1.2.15-5.1.2.x86_64 | |
libSDL_gfx13-2.0.23-4.1.1.x86_64 | |
libSDL_gfx-devel-2.0.23-4.1.1.x86_64 | |
libSDL_image-1_2-0-1.2.12-3.1.1.x86_64 | |
libSDL_image-devel-1.2.12-3.1.1.x86_64 | |
libSDL_mixer-1_2-0-1.2.11-18.1.1.x86_64 | |
libSDL_mixer-devel-1.2.11-18.1.1.x86_64 | |
libSDL_net-1_2-0-1.2.7-170.1.1.x86_64 | |
libSDL_net-devel-1.2.7-170.1.1.x86_64 |
This file contains hidden or 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
=pod | |
=head1 Modules | |
=over | |
=item * | |
This file contains hidden or 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
# Sinusfont: a simple SDL_ttf based sinus scroller | |
# Copyright (C) 2004 Angelo "Encelo" Theodorou | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or 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
warn WebGUI::Asset::dispatch[760] Couldn't call method www_add on asset for url: /home Root cause: newById must get an assetId | |
error WebGUI::Asset::processTemplate[2343] Can't instantiate template for asset AdX2ObZdStypz-_GzM2jbA |
This file contains hidden or 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
#!perl6 | |
# Install NativeCall.pm from http://github.com/jnthn/zavolaj.git | |
# Copy libSDL-1.2.so or dll into local directory and | |
# perl6 SDL.pl :D | |
use v6; | |
use NativeCall; | |
class SDL_Surface is OpaquePointer; |
This file contains hidden or 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
Title: Simple Game in SDL Perl and API design reports | |
Category: Perl 5 | |
Difficulty: easy | |
Estimated time: 7 days | |
Task description: Consists of: |
This file contains hidden or 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
package mario; | |
use Mouse; | |
use SDL; | |
use SDL::Event; | |
use SDL::Events; | |
use SDLx::App; | |
use SDLx::Sprite; |
This file contains hidden or 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
=pod | |
Get the game.png from http://i.imgur.com/FxgMM.png | |
Get link.png from http://imgur.com/P7JhS | |
=head1 INSTALL | |
For windows get strawberry perl | |
Then do: |
This file contains hidden or 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
#!/usr/bin/perl | |
use strict; | |
use SDL; | |
use SDL::App; | |
use SDL::Game::Rect; | |
use SDL::Event; | |
use SDL::Events; | |
use Coro; |