Skip to content
View jdmonty's full-sized avatar
  • Houston
  • 22:24 (UTC -06:00)

Highlights

  • Pro

Block or report jdmonty

Report abuse

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

Report abuse

Pinned Loading

  1. summarize.py summarize.py
    1
    #!/usr/bin/env python
    2
    # -*- coding: utf-8 -*-
    3
    
                  
    4
    """
    5
    In Flipboard's article[1], they kindly divulge their interpretation
  2. dotfiles.arch dotfiles.arch Public

    Forked from max-baz/dotfiles

    Configuration for Arch Linux, sway, kitty, kakoune, zsh and more + scripted installation guide

    Shell 1

  3. chat-gpt-google-extension chat-gpt-google-extension Public

    Forked from wong2/chatgpt-google-extension

    A browser extension to display ChatGPT response alongside search engine results

    JavaScript 1

  4. Basic principles of using tcl-expect... Basic principles of using tcl-expect scripts
    1
    ### Intro
    2
    
                  
    3
    TCL-Expect scripts are an amazingly easy way to script out laborious tasks in the shell when you need to be interactive with the console. Think of them as a "macro" or way to programmaticly step through a process you would run by hand. They are similar to shell scripts but utilize the `.tcl` extension and a different `#!` call.
    4
    
                  
    5
    ### Setup Your Script
  5. Git and Node with Zscaler proxy Git and Node with Zscaler proxy
    1
    #!/bin/sh
    2
    
                  
    3
    # Git proxy settings
    4
    echo "Configuring Git for compatibility with ZScaler..."
    5
    git config --global http.proxy http://gateway.zscaler.net:80/
  6. PdfGenerator.cs PdfGenerator.cs
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Linq;
    4
    using System.Security;
    5
    using System.Web;