• 3 Posts
  • 32 Comments
Joined 10 months ago
cake
Cake day: August 16th, 2023

help-circle

  • I prefer outdoor ranges when I have the opportunity but unfortunately geographically indoor ranges are more practical for me. Most indoor ranges will charge by the hr most outdoor ones are members only with long wait-lists.

    I’m going to an outdoor range soon, looking for a good time to break in my first handgun!

    Once I’ve e gone just to shoot a five rounds just to test something

    I was mainly wondering about how many rounds are spent so I can get the best value for my time while I’m there. Maybe you have a membership, so it didn’t cost you anything for that visit, but only five rounds, really? I wonder what you were testing out, haha.

    My personal pet peeve is just on the general quality available to non club members. If you aren’t a club member or taking a class your options are shoot from a booth or the boonies. Not many options to shoot from positions other than a bench or standing.

    Yeah, I can get that. Especially if you’re at an indoor range, you’re really only stuck with a booth and targets.


  • These days I try to do a jog or a little hike before outdoor range days because I’ve got this (misguided) idea that any drill you can’t do while already fatigued isn’t worth doing.

    I agree that being under duress or some kind of fatigue is probably an effective way to train.
    I’ve watched some competition recordings and I like the idea of shooting some targets, then sprinting to the next position to shoot more.
    Maybe at an outdoor range, shooting at some yard away, then turning 180 degrees, running some tens of yards away to shooting the same target more. I’ve seen a YouTuber do it, and I feel like that could be a common drill.










  • Thank you for your insightful response. I was initially considering grad school in something that is lateral to my degree in Computer engineering and CS minor, like data science or similar. I actually haven’t even considered applying to grants so that is a great suggestion. I’ll do some research on what kind of programs I can apply to and see if there are any grants that are applicable to me.

    As for location, I am around NYC. While I have been applying mostly in this area, I’m also applying all over the country as well, but still strongly prefer to work in or around a city. While I do get that certain cities have their own share of different industries and hubs, I didn’t realize that the market for jobs is also dependent on area but it all makes sense when you put it together…

    I failed to mention that I did actually land one offer at a tiny defense company in a rural part of the east coast though I declined it as I wasn’t comfortable working in that industry and I wasn’t willing to move out of a city area.
    While I ultimately do not regret declining the offer, I reflected on the idea that I probably don’t have a choice on which industry I work in as a first job; the main goal is to gain experience.
    I haven’t aspired to work in a government position too much because of my condition mentioned above, but I guess I need to sacrifice my idea of an ideal job and rough it out for maybe a year in that type of industry.

    Per your last point, reaching out has been very effective in me finding opportunities, so that’s a great suggestion. I’ve been using Linkedin to connect with alumni to seek mentorship and advice, and I’ve even gotten referrals to some target companies through them and their network. I’ve also been reaching out to friends who are working and while these all translate into some interviews, there still hasn’t been any cigar.

    I’ve been feeling a lack of drive after having bombed some technical interviews and still not generating any experience nor cash and so that’s why I was thinking about pivoting in the first place. Even with taking account of the current market situation, it’s still crushing to see others land something and all my friends around me working while I’m still at home. /rant

    Regardless, I’m grateful for your insight. I’ll look further into grad school while applying, and open up my breadth in terms of industries I should be applying to.










  • Also, I’d like to point out that Overleaf’s hosting and pricing options are quite reasonable, especially if you’re working for a university or institution: https://www.overleaf.com/user/subscription/plans

    While I did take advantage of the free Overleaf Pro during my university days, I don’t have it anymore after graduating, and so I’m missing some features which their free tier doesn’t have.
    By self-hosting I’m given better control, and all those features I once had before.

    Also, the whole point of this community is to kind of avoid relying on third-party hosting, and especially paying for it too🙂


  • I checked the volumes that I included in the compose file, and looked for either a texlive, tlmgr or a package folder and didn’t find anything. I think it’s safe to assume that you would need to reinstall the packages if you recreated the containers.

    This is a problem that I didn’t consider. I will try to make an update to my compose file that will keep the packages persistent.

    Check above for the update!


  • There’s some tinkering with their docker-compose.yml to make it work. Here’s mine you can copy if you want to get it up and running. I don’t use nginx or any reverse-proxy btw. All data is saved in their own individual volumes which you can back up:

    services:
        sharelatex:
            restart: always
            image: sharelatex/sharelatex
            depends_on:
                mongo:
                    condition: service_healthy
                redis:
                    condition: service_started
            ports:
                - *DESIRED_PORT*:80
            links:
                - mongo
                - redis
            stop_grace_period: 60s
            volumes:
                - data:/var/lib/sharelatex
                - texlive:/usr/local/texlive
    
            environment:
                SHARELATEX_APP_NAME: Overleaf Community Edition
                SHARELATEX_MONGO_URL: mongodb://mongo/sharelatex
                SHARELATEX_REDIS_HOST: redis
                REDIS_HOST: redis
                ENABLED_LINKED_FILE_TYPES: 'project_file,project_output_file'
                ENABLE_CONVERSIONS: 'true'
                EMAIL_CONFIRMATION_DISABLED: 'true'
    
        mongo:
            command: "--replSet overleaf"
            restart: always
            image: mongo:4.4
            expose:
                - 27017
            volumes:
                - mongo_data:/data/db
            healthcheck:
                test: echo 'db.stats().ok' | mongo localhost:27017/test --quiet
                interval: 10s
                timeout: 10s
                retries: 5
    
        redis:
            restart: always
            image: redis:6.2
            expose:
                - 6379
            volumes:
                - redis_data:/data
    
    volumes:
      data:
      mongo_data:
      redis_data:
      texlive:
    

    Some of my documents rely on certain packages which didn’t come with the Docker image. You will need to run
    docker exec sharelatex-sharelatex-1 tlmgr update --self;docker exec sharelatex-sharelatex-1 tlmgr install scheme-full
    so that you can render your documents properly if they utilize certain packages.

    Optionally—since the full scheme takes about 8 GB and you may not need everything—you can replace scheme-full with a different scheme you can find by running
    docker exec sharelatex-sharelatex-1 tlmgr info schemes
    The i before any scheme name means that it is already installed.

    Update:
    Included a texlive volume to save any packages that were installed, so when recreating the containers, they will persist.