Skip to content
View joelbladt's full-sized avatar
  • Germany

Block or report joelbladt

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. laravel-api-boilerplate laravel-api-boilerplate Public

    PHP 2

  2. joelbladt.github.io joelbladt.github.io Public

    CSS

  3. Currently I am learning the programm... Currently I am learning the programming language Java. I found a source code for encoding and decoding Base58 in the PHP programming language on the website https://www.darklaunch.com/base58-encode-and-decode-using-php-with-example-base58-encode-base58-decode.html // I found it exciting to rewrite this PHP code into Java. The result is certainly not perfect, but I could gain experience for myself.
    1
    public class Base58 {
    2
        String charset = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ";
    3
        int charsetLength = this.charset.length();
    4
      
    5
        public String encode(String input) {
  4. Easter formula according to Carl Fri... Easter formula according to Carl Friedrich Gauss
    1
    <?php
    2
    
                  
    3
    declare(strict_types=1);
    4
    
                  
    5
    /**
  5. A holiday is called movable if it do... A holiday is called movable if it does not occur on the same date every year. This applies to the smaller part of the German holidays - the majority have fixed dates. For a movable holiday to occur again on the same day in the year, up to several hundred years can pass in extreme cases. This applies, for example, to an Easter Sunday on the earliest possible date on March 22. There, the last and the next occurrence are more than 450 years apart.
    1
    <?php
    2
    
                  
    3
    /**
    4
     * Calculate movable Holidays
    5
     *