Feature request for adding this to the docs on requarks.canny.io
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
Feature request for adding this to the docs on requarks.canny.io
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
#include <eosiolib/eosio.hpp> | |
#include <eosiolib/print.hpp> | |
using namespace eosio; | |
struct hello : public contract { | |
using contract::contract; | |
void hi( name user ) { | |
print( “Hello, “, user ); | |
} |
#include <eosiolib/eosio.hpp> | |
class simpletoken : public eosio::contract { | |
public: | |
simpletoken( account_name self ) | |
:contract(self),_accounts(self, self){} | |
/** User's call this method to transfer tokens */ | |
void transfer( account_name from, account_name to, uint64_t quantity ) { | |
require_auth( from ); |
#!/bin/bash | |
sudo apt install \ | |
linux-image-extra-$(uname -r) \ | |
linux-image-extra-virtual \ | |
apt-transport-https \ | |
ca-certificates curl \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 |
I've decided to post this article anonymously. As much as I would have loved to get credit for it, it is not worth putting the safety of my Korean guides at risk. They are great people, and having any connection to this (even though everything done was legal), could cause them to suffer consequences under the regime.
In the Spring of 2016 I had the chance to travel to the Democratic People’s Republic of Korea, known in the West as North Korea. The trip was very enlightening, and I’ve come away with a lot of new personal thoughts about the country. This post is not about my personal thoughts though, this post is about my love of cybersecurity and my constant want to be put on new national security lists.
# Maintainer: Youngbin Han <[email protected]> | |
# Maintainer: xDShot <[email protected]> | |
pkgname=micro | |
pkgver=1.0.3 | |
pkgrel=1 | |
pkgdesc="A modern and intuitive terminal-based text editor" | |
arch=('x86_64' 'i686') | |
url="https://github.com/zyedidia/micro" | |
license=('MIT') | |
makedepends=('go') |
ora=<instaclient-install-dir>
gcc=
package main | |
import ( | |
"bytes" | |
"compress/gzip" | |
"database/sql/driver" | |
"errors" | |
"fmt" | |
"github.com/jmoiron/sqlx" | |
_ "github.com/mattn/go-sqlite3" |
#!/bin/sh | |
## Node.js for Raspberry Pi Packaging Script | |
## ========================================= | |
## Execute this script from within node.js git repo | |
## Use like this: | |
## ~/node/$ VERSION=v0.10.0 ./buildnode.sh | |
if [ -z $VERSION ]; then | |
echo "set the VERSION first" | |
exit 1 |