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
$inputfile = "C:\path\to\logfile.log" | |
$outputfile = "C:\path\to\output.log" | |
$stacktraces = get-content $inputfile | where { $_ -like '{*' } | get-unique | |
new-item $outputfile -type file -force | |
foreach($st in $stacktraces) { | |
add-content $outputfile (ConvertFrom-Json $st).stacktrace | |
add-content $outputfile "`r`n===========================================================================`r`n" | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
# Loop through all files and directories | |
for dir in ./* | |
do | |
# Skip files | |
if [ -d $dir ]; then | |
cd $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
// This script generates a tab-delimeted list of households with the currently | |
// assigned home teachers. Copy and paste the script into the browser JS console | |
// (opened by hitting the F12 key on PCs) when on the Households tab of the | |
// Hometeaching section of Leader and Clerk Resources on lds.org. | |
// The output is formatted in a way that allows you to pase it into your favorite | |
// spreadsheet program. | |
// For each household... | |
$('.member-list-body').map(function(){ | |
var row = $(this); |
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
{ | |
"persons": [{ | |
"id": "1", | |
"sources": [{ | |
"description": "#7" | |
}], | |
"gender": { | |
"type": "http://gedcomx.org/Female" | |
}, | |
"names": [{ |
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
{ | |
"persons": [{ | |
"id": "KWZP-453", | |
"sources": [{ | |
"id": "a15d4b0a-39d6-47a6-90fb-1f4b20199eb2", | |
"description": "https://familysearch.org/platform/sources/descriptions/M9XQ-7ZP", | |
"attribution": { | |
"contributor": { | |
"resource": "https://familysearch.org/platform/users/agents/MM7L-QCH" | |
}, |
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
{ | |
"persons": [{ | |
"id": "1", | |
"sources": [{ | |
"description": "#6" | |
}], | |
"gender": { | |
"type": "http://gedcomx.org/Male" | |
}, | |
"names": [{ |
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
{ | |
"persons": [{ | |
"id": "K1VK-9VB", | |
"sources": [{ | |
"id": "8cc55ba1-0509-410a-adbd-c0576bf3ade1", | |
"description": "https://familysearch.org/platform/sources/descriptions/9XVK-5K8", | |
"attribution": { | |
"contributor": { | |
"resource": "https://familysearch.org/platform/users/agents/MMJF-TLW" | |
}, |
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
* : Theodore Yurkiewicz | |
* : Theodore York | |
* Fact: http://gedcomx.org/Christening | |
* Fact: http://gedcomx.org/Immigration | |
* Fact: http://gedcomx.org/Immigration | |
* Fact: http://gedcomx.org/Emigration | |
* Fact: http://gedcomx.org/Residence | |
* Fact: http://gedcomx.org/Residence | |
* Fact: http://gedcomx.org/Residence | |
* Fact: http://gedcomx.org/Residence |
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(e) { | |
function r(n) { | |
if (t[n]) return t[n].exports; | |
var o = t[n] = { | |
i: n, | |
l: !1, | |
exports: {} | |
}; | |
return e[n].call(o.exports, o, o.exports, r), o.l = !0, o.exports | |
} |
OlderNewer