Skip to content
View luka5's full-sized avatar

Organizations

@mikanda
Block or Report

Block or report luka5

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

  1. livetracking livetracking Public

    Live Tracking Server for Locus Map https://www.locusmap.app/

    HTML

  2. List all the Salewa shoes with label... List all the Salewa shoes with label vegan.
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    for u in $(curl --silent https://www.salewa.com/de-de/herren-schuhe | grep product--information-box | sed -e "s|<a href=\"||" | sed -e "s|\" .*||"); do
    4
      if curl --silent $u | grep -i vegan &>/dev/null; then
    5
        echo $u
  3. docker-github-runner docker-github-runner Public

    Forked from tcardonne/docker-github-runner

    Run GitHub Actions on self-hosted runner using Docker.

    Dockerfile

  4. kubernetes-credentials-provider-plugin kubernetes-credentials-provider-plugin Public

    Forked from jenkinsci/kubernetes-credentials-provider-plugin

    Credentials provider that allows storing credentials in Kubernetes

    Java