top of page

Ana-Maria

Mihalceanu

JAVA CHAMPION ALUMNI  -  CERTIFIED ARCHITECT

  • GitHub
  • Bluesky_App_Icon
  • mastodon-logo-AAA76BE2CA-seeklogo.com
  • X
Profile.JPG
Welcome
Hello! I am Ana, Java Champion Alumni, co-founder of Bucharest Software Craftsmanship Community, and a constant adopter of challenging technical scenarios involving Java-based frameworks and multiple cloud providers. I am an active supporter of technical communities’ growth through knowledge sharing and enjoy curating content for conferences as a program committee member. Follow me on social media, checkout my speaking calendar and let's talk more about architecture and programming with Java and Kubernetes 😊!

Slides of Recent Talks

Please consider checking my slideshare profile for slides from past talks. Starting with december 2023 I share them here too.

Posts

bottom of page
  import subprocess
  import pathlib
  import requests
  from tqdm import tqdm
  import pandas as pd
  
  # Destination folder for the downloaded files
  dir_dest = pathlib.Path(__file__).absolute().parent.parent / "dataset"
  try:
      # Send GET request to Github API
      r = requests.get(
          (
              "https://api.github.com/repos/shandou/"
              "data-sets/contents"
          )
      )
      r.raise_for_status()
  except requests.exceptions.HTTPError as e:
      print(f"requests failed with error {e}")
  else:
      # When requests succeed, pack returned JSON into pandas dataframe
      df = pd.read_json(r.content)