Skip to content

Instantly share code, notes, and snippets.

View dcht00's full-sized avatar

David P dcht00

View GitHub Profile

"Don Knuth Plays with ChatGPT" but with ChatGPT-4

1. Tell me what Donald Knuth says to Stephen Wolfram about chatGPT.

I'm sorry for any confusion, but as an AI, I can't provide real-time updates or specific conversations between individuals beyond my last training cut-off in September 2021. I don't have access to the internet or any databases for real-time information or private communications. Therefore, I can't give you the details of a conversation between Donald Knuth and Stephen Wolfram about ChatGPT, if such a conversation has taken place after my training data.

However, it's worth noting that both Donald Knuth and Stephen Wolfram are significant figures in the fields of computer science and computational mathematics. Knuth is widely recognized for his multi-volume work "The Art of Computer Programming" and for creating the TeX computer typesetting system, while Wolfram is known for his work in developing Mathematica and Wolfram|Alpha, and for his contributions to cellular automata theory, outl

@wolfhesse
wolfhesse / code-of-conduct.md
Created September 21, 2018 10:33
p2p left

WHO WE ARE P2P-Left is an online group of people committed to exploring a more egalitarian p2p* mode of exchange, with the awareness, sensitivity and in-formation of intersectionality. We welcome heterodox perspectives that may be less addressed in other forums (Marxist, Communist, Anarchist, Feminist, Postcolonial, Abolitionist, Racial Justice Positive, Queer, Hacker and Pirate).

We recognise this requires us to have challenging conversations in our community about privilege, power, history, culture, inequality, pain, injustice and trauma. Our goal is to have these dialogues and debates from a place of compassion that honours our shared humanity - that we learn together as a community how to have these conversations. We therefore ask that you read and commit to the group’s Code of Conduct before engaging in any community conversations. [link to the full Code of Conduct will be posted here soon]

DIVERSITY STATEMENT Although this list cannot be exhaustive, we explicitly honour diversity in age, gender, gende

@dcht00
dcht00 / gephi_install_1404.sh
Last active September 12, 2021 17:39
Installing Gephi on Ubuntu 14.04 (Trusty)
#
# INSTALLING GEPHI ON UBUNTU TRUSTY
#
# Edit the sources file and add this to end:
# deb http://ppa.launchpad.net/rockclimb/gephi-daily/ubuntu precise main
sudo joe /etc/apt/sources.list
# You can't just install gephi because it's missing libgoogle-collections-java
# And that one's not packaged with Ubuntu anymore as of Trusty at least
@stef
stef / mlint.py
Last active October 26, 2015 21:08
analyzes emails for netiquette
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2014, stf - AGPLv3+
# analyzes emails for netiquette
#
# invoke with mlint <emailcontainer> [<format>]
#
# where format is "mail" for raw mails, "mbox" for mbox files, if
# omitted the default is Maildir containers
#

Keybase proof

I hereby claim:

  • I am tmancill on github.
  • I am tmancill (https://keybase.io/tmancill) on keybase.
  • I have a public key whose fingerprint is E50A FD55 ADD2 7AAB 9716 3A8B 21D2 0589 974B 3E96

To claim this, I am signing this object:

@rtt
rtt / tinder-api-documentation.md
Last active February 27, 2024 13:21
Tinder API Documentation

Tinder API documentation

Note: this was written in April/May 2014 and the API may has definitely changed since. I have nothing to do with Tinder, nor its API, and I do not offer any support for anything you may build on top of this. Proceed with caution

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)

@zachharkey
zachharkey / Recursively copy a directory (using cp, tar or rsync).md
Last active January 14, 2024 11:56
Recursively copy a directory (using cp, tar or rsync). Reformatted from http://snipplr.com/view/26670/

Recursively copy a directory (using cp, tar or rsync)

Original Source: http://snipplr.com/view/26670/

Reformatted for improved readability and personal reference.

How does one make a recursive, identical copy of /source/ into /target/?

I suppose you want to do that for archiving or duplicating something and want to preserve "everything". That includes permissions, ownership, filetypes, timestamps etc.