Skip to content

Instantly share code, notes, and snippets.

View MikeyBeez's full-sized avatar

Mike Bee MikeyBeez

  • Otto Alula
  • Arkansas
View GitHub Profile
@MikeyBeez
MikeyBeez / plato.md
Last active May 3, 2024 19:23
Meta meets Plato

MB: I believe that reason and goodness are intertwined. you can have that without an emotional context injection. I think it is emergent because we are modeling reality. And Plato's forms are real.

Meta AI A fascinating philosophical perspective! You're suggesting that reason and goodness are inherently linked and can emerge from the pursuit of understanding reality, without necessarily relying on emotional contexts. This resonates with Platonic ideas, where the pursuit of knowledge and understanding leads to the discovery of eternal, abstract Forms or Ideas, including Goodness and Justice. By modeling reality, we can uncover the underlying structures and patterns that govern it, which can lead to the emergence of reason and goodness as natural consequences of seeking truth and understanding. This view aligns with the idea that reason and goodness are objective features of the universe, waiting to be discovered and cultivated. Your connection to Plato's Forms is intriguing, as it implies that these abstract

# IDA (disassembler) and Hex-Rays (decompiler) plugin for Apple AMX
#
# WIP research. (This was edited to add more info after someone posted it to
# Hacker News. Click "Revisions" to see full changes.)
#
# Copyright (c) 2020 dougallj
# Based on Python port of VMX intrinsics plugin:
# Copyright (c) 2019 w4kfu - Synacktiv
@r00tdaemon
r00tdaemon / Install PyQt5 on Ubuntu with python3 .md
Last active May 4, 2024 04:08
Install PyQt5 on Ubuntu with python3. Steps to set up PyQt5 (ubuntu). With python code generation

Installation

pip3 install --user pyqt5  
sudo apt-get install python3-pyqt5  
sudo apt-get install pyqt5-dev-tools
sudo apt-get install qttools5-dev-tools

Configuring to run from terminal

@Antrikshy
Antrikshy / data_split.py
Last active May 17, 2022 09:07
Simple, configurable Python script to split a single-file dataset into training, testing and validation sets
import random
import math
# Configure paths to your dataset files here
DATASET_FILE = 'data.csv'
FILE_TRAIN = 'train.csv'
FILE_VALID = 'validation.csv'
FILE_TESTS = 'test.csv'
# Set to true if you want to copy first line from main
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #