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
I=0 | |
for F in *; do | |
echo "$F" `printf CMP1092-%03d.json $I+1` | |
//mv "$F" `printf CMP1092-%03d.json $I+1` 2>/dev/null || true | |
I=$((I + 1)) | |
done |
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
UPDATE corporate_member_info | |
SET r_comp = NULL, o_comp = NULL, | |
f_name = NULL, l_name = NULL, Nname_f = NULL, Nname_l = NULL, | |
password = "****", login_name = licence_ID, | |
course_access = NULL, limited_acess = NULL, | |
email = NULL, employee_id = NULL, email = NULL, report_frequency = NULL, | |
language_preference = "ar", | |
report_send = NULL, report_frequency = NULL, report_recipients = NULL, | |
current_login = NULL, logins = NULL, total_time_spent = NULL, | |
activate_date = 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
//purpose of this file is to loop through a batch of MP4 files and convert to flac filetype in Ubuntu command line | |
for f in av-files/*.mp4; | |
do avconv -i "$f" "${f%.mp4}.wav"; | |
done; | |
//another version | |
for f in *.mp4; | |
do avconv -i "$f" "${f%.mp4}.wav"; | |
done; |
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
/?_escaped_fragment_= |
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
//use command line within windows | |
//go to the extracted ngrok folder | |
ngrok.exe http [your.ip.address]:[your-port-number] |
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
UPDATE corporate_member_info SET | |
course_access = NULL, | |
mng_group ="Zamil Group", | |
r_comp= NULL, | |
o_comp = NULL, | |
group_id = 442, | |
f_name = NULL, | |
l_name = NULL, | |
language_preference = "en", | |
Nname_f = NULL, |
NewerOlder