This file contains hidden or 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
#!/usr/bin/env python | |
import base64, json | |
import xml.etree.ElementTree as ET | |
verbose = False | |
root = ET.parse ('org.fedorahosted.freeotp/sp/tokens.xml').getroot() | |
for secrets in root.findall ('string'): | |
name = secrets.get ('name') |
This file contains hidden or 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
[markup.goldmark.renderer] | |
unsafe= true |
This file contains hidden or 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
<p> | |
<audio class="player" controls preload="none"> | |
<source src="/mp3/{{ index .Params 0 }}" type="audio/mp3"> | |
</audio> | |
</p> |
This file contains hidden or 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
<figure {{ with .Get "class" }}class="{{ . }}"{{ end }}> | |
<audio controls preload="{{ .Get "preload" | default "metadata" }}"> | |
{{ with .Get "src" }}<source src="{{ . | relURL }}" type="audio/mpeg">{{ end }} | |
</audio> | |
{{ with .Get "caption" }}<figcaption>{{ . }}</figcaption>{{ end }} | |
</figure> |
This file contains hidden or 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
05-28 13:55:10.122 2491 2586 I QCNEJ : |CORE| notifyMobileDataEnabled is enabled true && isDataRoamingAllowed true | |
05-28 13:55:10.122 2491 2586 I QCNEJ/CndHalConnector: -> SND notifyMobileDataEnabledChanged(true) | |
05-28 13:55:10.125 2528 2528 D ServiceStateProvider: subId=1 | |
05-28 13:55:10.133 4005 4005 I CarrierServices: [2] cyn.onReceive: Received SERVICE_STATE intent, clearing cached cell info | |
05-28 13:55:10.464 886 974 E ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only | |
05-28 13:55:10.576 1803 2194 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.teslacoilsw.launcher/.NovaLauncher (has extras)} from uid 1000 | |
05-28 13:55:10.594 1803 2194 I ActivityManager: moveHomeStack, setupComplete:true | |
05-28 13:55:10.620 20627 20627 I Dialer : CallLogAdapter.onSaveInstanceState - saved: 0, selectedItemsSize:0 | |
05-28 13:55:10.642 1803 16687 D ConnectivityService: Returning UNBLOCKED NetworkInfo to uid=10132 | |
05-28 13:55:10 |
This file contains hidden or 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
05-27 13:13:29.750 1803 3330 I ActivityManager: Start proc 29403:io.gitjournal.gitjournal/u0a672 for activity io.gitjournal.gitjournal/.MainActivity | |
05-27 13:13:29.750 29403 29403 E SchedPolicy: open of /dev/cpuctl/bg_non_interactive/tasks failed: No such file or directory | |
05-27 13:13:30.493 29403 29420 I FA : App measurement is starting up, version: 16250 | |
05-27 13:13:30.493 29403 29420 I FA : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE | |
05-27 13:13:30.494 29403 29420 I FA : To enable faster debug mode event logging run: | |
05-27 13:13:30.494 29403 29420 I FA : adb shell setprop debug.firebase.analytics.app io.gitjournal.gitjournal | |
05-27 13:13:30.762 29403 29403 D FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization. | |
05-27 13:13:30.763 29403 29403 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization. | |
05-27 13:13:30.764 29403 29403 I FirebaseInitProvider: FirebaseApp initialization successfu |
This file contains hidden or 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
05-26 22:01:08.036 3500 3566 E GitJournalLib: UsernameProvided: git | |
05-26 22:01:08.036 3500 3566 E GitJournalLib: Allowed Types: 6 | |
05-26 22:01:08.036 3500 3566 E GitJournalLib: Payload: 0x938fee53 | |
05-26 22:01:08.036 3500 3566 E GitJournalLib: gj_paylaod: 0x938fee53 | |
05-26 22:01:09.618 1803 1812 I zygote : Background concurrent copying GC freed 160112(13MB) AllocSpace objects, 56(2MB) LOS objects, 42% free, 28MB/49MB, paused 218us total 307.281ms | |
05-26 22:01:10.306 3500 3529 I flutter : Done | |
05-26 22:01:10.306 3500 3529 I flutter : NotesRepo Synced: true | |
05-26 22:01:10.306 3500 3529 I flutter : Loading Notes From Disk | |
05-26 22:01:10.330 3500 3529 I flutter : Load Notes From Disk Error: NoSuchMethodError: The method 'forEach' was called on null. | |
05-26 22:01:10.330 3500 3529 I flutter : Receiver: null |
This file contains hidden or 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
<script language="javascript"> | |
function myFunction(searchboxid) { | |
if (window.location.hostname == "localhost") { | |
console.log( "Running on localhost not a proper domain so cannot search via duckduckgo.com" ); | |
return; | |
} | |
var q = document.getElementById('searchboxid').value; | |
q = encodeURIComponent( q ); | |
// var site = "rv1.tech"; | |
var site = "{{ .Site.BaseURL }}" ; |
This file contains hidden or 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
# Bucketize stdin to nearest multiple of argv[1], or 10 if no args given. | |
# "nearest" means 0..4.999 -> 0, 5..14.999 -> 10, etc. | |
# Usage: | |
# while true ; do echo $[ 1 + $[ RANDOM % 100 ]]; done | head -99 | bucket.sh 8 | |
awk -v multiple="${1:-10}" ' | |
function bucketize(a) { | |
# Round to the nearest multiple of "multiple" |
This file contains hidden or 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
ataliba@neo ~$ env x='() { :;}; echo vulnerável' bash -c "echo teste" | |
teste |
NewerOlder