Skip to content
View littlecastrum's full-sized avatar
🏠
Working on building a work
🏠
Working on building a work
Block or Report

Block or report littlecastrum

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
littlecastrum/README.md

Bio

Hi there, I'm Dan! I'm a Senior Frontend Engineer at Lantum πŸ‘‹

  • πŸ’» I have spent most of my carreer with JS in all it's shapes so I feel very confident working with it in the Front or Back
  • πŸ‘€ I’m interested in OS, Networking and low level stuff that I have no experience on
  • 🌱 I’m currently learning "nand2tetris" which is basically very elementary knowledge on computers
  • πŸ’žοΈ I’m looking to collaborate on systems programming and networking or just something different
  • πŸ§—β€β™‚οΈ I'm very passionate about climbing which is my main passion outside of work

Now listening 🎧

spotify-github-profile

Languages and Tools:

My Skills

Pinned Loading

  1. A bash script that creates new proje... A bash script that creates new projects where you configure them and sets the repository on github and locally
    1
    function create() {
    2
      token="<github_oauth_token>"
    3
      url="https://api.github.com/user/repos"
    4
      header="Content-Type: application/json, Authorization: token $token"
    5
      body="{\"name\":\"$1\"}"
  2. Scrapper for all municipalities in A... Scrapper for all municipalities in Argentina with their phone numbers and urls
    1
    import requests
    2
    import csv
    3
    from bs4 import BeautifulSoup
    4
    from collections import defaultdict
    5