- 2 x 15.5 oz cans of Trappy's jalapeno black-eyed peas cooked and rinsed
- 3/4 cup of tahini
- 3 cloves of fresh garlic
- 1/4 cup of oil (I used avocado)
- 1 lemon juiced
- 2 tsp salt
This file contains 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
[] |
This file contains 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
declare @tableName varchar(200) | |
declare @columnName varchar(200) | |
declare @nullable varchar(50) | |
declare @datatype varchar(50) | |
declare @maxlen int | |
declare @sType varchar(50) | |
declare @sProperty varchar(200) | |
DECLARE table_cursor CURSOR FOR |
This file contains 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
ffmpeg -listen 1 -i rtmp://area61.better-than.tv:1935/ANYTV_USR_BRITISH10/BRITISH10.sdp \ | |
-c:v libx264 -crf 21 -preset veryfast \ | |
-c:a aac -b:a 128k -ac 2 \ | |
-f hls -hls_time 4 -hls_playlist_type event stream.m3u8 |
This file contains 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
sudo letsencrypt renew |
This file contains 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
function Replace-HostEntry ($targetDns, $newIpAddress) { | |
$hostsPath = "$env:windir\System32\drivers\etc\hosts" | |
$hosts = Get-Content $hostsPath | |
$hosts = $hosts -replace "^.+$targetDns", "$newIpAddress $targetDns" | |
$hosts | Out-File $hostsPath -enc ascii | |
} | |
function Get-DockerIpByImageName($imageName) { | |
$container = docker ps | Select-String $imageName |
This file contains 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
git revert --no-commit 0766c053..HEAD | |
git commit |
This file contains 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
# | |
# Example | |
# Restore-SqlBackup -serverInstance TARDIS\SQLEXPRESS -backupFile C:\DATA\TestDatabase.bak -targetDatabase TestDatabaseClone | |
# | |
function Restore-SqlBackup($serverInstance, $backupFile, $targetDatabase) { | |
$server = New-Object Microsoft.SqlServer.Management.Smo.Server $serverInstance; | |
$dataFolder = $server.Settings.DefaultFile; | |
$logFolder = $server.Settings.DefaultLog; |
This file contains 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
configure | |
set service dns dynamic interface eth0 service namecheap host-name <host> | |
set service dns dynamic interface eth0 service namecheap login <username> | |
set service dns dynamic interface eth0 service namecheap password <password> | |
commit | |
save | |
exit |
This file contains 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
configurations": [ | |
{ | |
"name": "Rails server", | |
"type": "Ruby", | |
"request": "launch", | |
"cwd": "${workspaceRoot}", | |
"program": "${workspaceRoot}/bin/rails", | |
"args": ["server"] | |
} | |
] |
NewerOlder