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
for files in *.mp3; do echo ${files}>>00\ ALBUMNAME.m3u; done |
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
# coding: utf-8 | |
import os | |
base_dir = os.walk("/dir_path") | |
for root, directory, files in base_dir: | |
for filename in files: | |
filepath = os.path.join(root, filename) | |
print (filepath) |
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 showElementsOnClient(elements){ | |
// Select Elements. | |
var selectedElements = document.querySelectorAll(elements); | |
// looping through the querySelectorAll NodeList[selectedElements_lenght] | |
for (i in selectedElements){ | |
// defining selectedElements into the countedElements | |
var countedElements = selectedElements[i].innerText; |
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 | |
for i in $(cat .gitignore); do echo $i && git rm -rf --cached $i; done |
NewerOlder