Skip to content

Instantly share code, notes, and snippets.

View adimyth's full-sized avatar
🎯
Focusing

Aditya Mishra adimyth

🎯
Focusing
View GitHub Profile
@adimyth
adimyth / httpd.conf
Created August 9, 2022 14:28
HTTPD configuration for macos with PHP (M1)
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
@adimyth
adimyth / assignment.py
Created October 19, 2022 10:46
Some random assignment
def is_illegal(input):
words = input.split(" ")
for word in words:
if word in "ENGLISH_WORDS":
return "ILLEGAL"
for char in word:
if char in [" ", "\n", "\t"]:
return "ILLEGAL"
return None
@adimyth
adimyth / setup.md
Last active March 26, 2024 14:14
Ubuntu 20.04 RDP setup

Setup

MacBook Air(macOS Catalina) & Ubuntu 20.04 connected on the same network locally.

Steps

  • Install XRDP and enable
sudo apt install xrdp
sudo systemctl enable xrdp
sudo systemctl start xrdp