Skip to content

Instantly share code, notes, and snippets.

@illgitthat
illgitthat / amazon-echo-show-pihole-blocklist.txt
Created October 9, 2025 20:43
amazon-echo-show-pihole-blocklist
jet.amazon
juno.alexa.amazon.dev
msh.amazon.com
msh.amazon.co.uk
dp-gw-na.amazon.com
dp-discovery-na-ext.amazon.com
sip-edge.amc.amazon.dev
acsechocaptiveportal.com
softwareupdates.amazon.com
kindle-time.amazon.com
@illgitthat
illgitthat / .env in vscode.txt
Created August 23, 2021 04:10
Using .env files in VSCode integrated terminal with django pipenv
The easiest way to do this was to add
export $(grep -v '^#' .env | xargs)
to the end of the activate file used by pipenv
For debug purposes, might also need to set "python.envFile": "${workspaceFolder}/.env",
There might be another way to do this with terminal.integrated.profiles.linux or terminal.integrated.env but I didn't find it.

Keybase proof

I hereby claim:

  • I am illgitthat on github.
  • I am illkeythat (https://keybase.io/illkeythat) on keybase.
  • I have a public key ASBjZrNHtgtLBqzzOYSLHE5bV3QkiC5WTHFrTiV1IzUi_wo

To claim this, I am signing this object:

[Fri Apr 01 20:02:01 2016] [error] [client 198.82.108.85] mod_wsgi (pid=3581): Exception occurred processing WSGI script '/home/ec2-user/coursepicklev2/django_pickle/wsgi.py'.
[Fri Apr 01 20:02:01 2016] [error] [client 198.82.108.85] Traceback (most recent call last):
[Fri Apr 01 20:02:01 2016] [error] [client 198.82.108.85] File "/home/ec2-user/coursepicklev2/django_pickle/wsgi.py", line 12, in <module>
[Fri Apr 01 20:02:01 2016] [error] [client 198.82.108.85] from django.core.wsgi import get_wsgi_application
[Fri Apr 01 20:02:01 2016] [error] [client 198.82.108.85] ImportError: No module named django.core.wsgi
@illgitthat
illgitthat / traderequest
Created April 4, 2015 00:05
traderequest
Public Property Ticker As String
Get
Return pTicker
End Get
Set(value As String)
pTicker = value
End Set
End Property
Public Property RequestDate As Date
Get
@illgitthat
illgitthat / submit button
Created April 3, 2015 21:23
submit button
Private Sub SubmitButton_Click(sender As Object, e As EventArgs) Handles SubmitButton.Click
If QuantityTextBox.Text < 0 Then
MsgBox("You must provide a numerica value greater than 0")
'EXIT SUB HERE, how?
End If
Dim newTradeRequest As New TradeRequest(StockComboBox.SelectedItem, TradeTypeComboBox.SelectedItem, CInt(QuantityTextBox.Text))
newTradeRequest.StoreRequest(stockConnection)
End Sub
Public Sub StoreRequest(ByVal conn As OleDbConnection)