Note: Tested on Fedora only
- Download the new release of GraalVM and unpack it anywhere in your filesystem:
$ tar -xvzf graalvm-ce-1.0.0-rc14-linux-amd64.tar.gz
Note: Tested on Fedora only
$ tar -xvzf graalvm-ce-1.0.0-rc14-linux-amd64.tar.gz
// Uncompressed version of | |
// https://gist.github.com/munificent/b1bcd969063da3e6c298be070a22b604 | |
#include <time.h> // Robert Nystrom | |
#include <stdio.h> // @munificentbob | |
#include <stdlib.h> // for Ginny | |
#include <stdbool.h> // 2008-2019 | |
const int HEIGHT = 40; | |
const int WIDTH = 80; |
/.idea/ | |
/cmake-build-debug/ | |
/dungeon |
!**************************************************** | |
! フィボナッチ数列計算 | |
! | |
! DATE AUTHOR VERSION | |
! 2018.08.20 mk-mode.com 1.00 新規作成 | |
! 2021.12.07 mk-mode.com 1.01 recursive を削除 | |
! | |
! Copyright(C) 2018-2021 mk-mode.com All Rights Reserved. | |
!**************************************************** | |
! |
#!/bin/bash | |
# Based on kizbitz/dockerhub-v2-api-organization.sh at https://gist.github.com/kizbitz/175be06d0fbbb39bc9bfa6c0cb0d4721 | |
# Example for the Docker Hub V2 API | |
# Returns all images and tags associated with a Docker Hub organization account. | |
# Requires 'jq': https://stedolan.github.io/jq/ | |
# set username, password, and organization | |
UNAME="" | |
UPASS="" |
// Ordinary | |
public class SimpleDto : ValueObject<SimpleDto> | |
{ | |
public string Value { get; set; } | |
} | |
// With base class | |
public abstract class BaseDto<T> : ValueObject<T> | |
{ | |
public string BaseValue { get; set; } |
Before you continue, if you don't know what IMGUI is don't bother reading this post, just ignore it, don't write anything in comments section, etc. If you're curious about IMGUI see bottom of this post, otherwise continue whatever you were doing, this post it's not for you. Thanks!
If you know what IMGUI is, for context read following presentations and blog posts: