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
export TOKEN="123abc" | |
export SERVER="http://localhost:32400" | |
curl -s -X GET -H "X-Plex-Token: $TOKEN" -H "Accept: application/json" $SERVER/library/sections/1/all | \ | |
jq ".MediaContainer.Metadata |= map(select(.Media | length > 1))" | \ | |
jq '.MediaContainer.Metadata[].Media[].Part[].file' |
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
use <../lib/roundedcube.scad> | |
WALL_WIDTH = 1.5; | |
REMOTE_DEPTH = 16.5; | |
REMOTE_WIDTH = 35.5; | |
REMOTE_HEIGHT = 90; | |
REMOTE_LIP = 2; | |
SWITCH_WIDTH = 11; |
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
#!/bin/bash | |
pihole -w android.clients.google.com | |
pihole -w reminders-pa.googleapis.com firestore.googleapis.com | |
pihole -w googleapis.l.google.com | |
pihole -w dl.google.com | |
pihole -w www.msftncsi.com | |
pihole -w outlook.office365.com products.office.com c.s-microsoft.com i.s-microsoft.com login.live.com login.microsoftonline.com | |
pihole -w g.live.com | |
pihole -w dl.delivery.mp.microsoft.com geo-prod.do.dsp.mp.microsoft.com displaycatalog.mp.microsoft.com |
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
require 'restforce' | |
require 'faye' | |
Restforce.log = true | |
Restforce.configure do |config| | |
config.logger = Logger.new("/tmp/restforce.log") | |
config.log_leve = :info | |
end |
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
#!/bin/bash | |
readyn() { | |
read -n1 yn | |
} | |
loopyn() { | |
readyn | |
while [[ "$yn" != "y" && "$yn" != "n" ]] |
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
public class FootballAPI { | |
public class GameWeather { | |
public String humidity {get;set;} | |
public String temp_celsius {get;set;} | |
public String temp_farenheit {get;set;} | |
public String wind_speed {get;set;} | |
public String description {get;set;} | |
} | |
public class GameTeam { |
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
pmd -dir src/ -f text -language apex -R path/to/pmd.xml -cache path/to/cache/dir |
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
public class ManageLeadTerritoryController { | |
@TestVisible private static String SCHEDULED_JOB_NAME = 'Mass Update Leads'; | |
@RemoteAction | |
public static void massUpdateNow() | |
{ | |
List<Territory_Setup__c> LeadTerrSetups = [select Id, Next_Mass_Update_Date_Lead__c, Status__c from Territory_Setup__c | |
order by lastmodifieddate desc limit 1]; | |
if(LeadTerrSetups.size() > 0 && LeadTerrSetups[0].STatus__c == 'on') |
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
if [ -f $HOME/.bashrc_local ]; then | |
. $HOME/.bashrc_local | |
fi |
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
#Add to .bashrc_sfdc | |
if [ -f $HOME/.bashrc_sfdc ] | |
then | |
. $HOME/.bashrc_sfdc | |
fi |
NewerOlder