This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "crypto/tls" | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| "io" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Jasmin Le Roux", | |
| "label": "Senior DevOps Engineer", | |
| "picture": "https://imgur.com/a/JzXarQg.jpg", | |
| "email": "theblazehen@gmail.com", | |
| "phone": "+27 67 299 6615", | |
| "summary": "A passionate DevOps engineer, who loves tinkering and making a meaningful difference", | |
| "location": { | |
| "postalCode": "7140", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import json | |
| from datetime import datetime | |
| from bs4 import BeautifulSoup, Comment | |
| from pydantic import BaseModel, Field | |
| from selenium import webdriver | |
| from selenium.webdriver.common.by import By | |
| from rich.console import Console | |
| from rich import print | |
| from asyncer import syncify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ==UserStyle== | |
| @name hachyderm.io - 11/12/2022, 3:18:21 PM | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description A new userstyle | |
| @author Me | |
| ==/UserStyle== */ | |
| @-moz-document domain("hachyderm.io") { | |
| /* Insert code here... */ | |
| .drawer { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * = $1000 | |
| ;;; disable interrupts | |
| LDA #%01111111 | |
| STA $DC0D | |
| ;;; disable text screen | |
| LDA #11 | |
| STA $D011 | |
| newline: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set shell=/bin/sh | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| silent !mkdir -p ~/.vim/bundle/ | |
| autocmd VimEnter * PlugInstall | |
| autocmd VimEnter * PlugInstall | source $MYVIMRC | |
| autocmd VimEnter * close | |
| endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @package | |
| * @author theblazehen | |
| * @version 0.1 | |
| * @access public | |
| */ | |
| class eMu { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import praw | |
| import random | |
| import time | |
| import cleverbot | |
| import os | |
| reddit = praw.Reddit(user_agent='insult bot') | |
| reddit.login('Clever_Bot_Replies', 'pass') | |
| mycb=cleverbot.Session() |