Skip to content
View jdmonty's full-sized avatar

Sponsoring

@RandomFractals

Highlights

  • Pro
Block or Report

Block or report jdmonty

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. 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 maximbaz/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;