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
# ------------------------------ | |
tools.esptool.cmd=esptool | |
tools.esptool.cmd.windows="C:\Python27\python.exe" | |
tools.esptool.path= | |
tools.esptool.upload.protocol=esp | |
tools.esptool.upload.params.verbose=-vv | |
tools.esptool.upload.params.quiet= | |
tools.esptool.upload.pattern={cmd} "C:\Python27\Scripts\esptool.py" --port "{serial.port}" --baud 76800 write_flash 0x00000 "{build.path}/{build.project_name}_00000.bin" 0x10000 "{build.path}/{build.project_name}_10000.bin" |
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
SELECT se.username, se.osuser, ss.sid, ROUND (value/100) "CPU Usage" | |
FROM v$session se, v$sesstat ss, v$statname st | |
WHERE ss.statistic# = st.statistic# | |
AND name LIKE '%CPU used by this session%' | |
AND se.sid = ss.SID | |
AND se.username IS NOT NULL | |
AND ROUND (value/100) > 0 | |
ORDER BY value DESC; |
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
git log -Spassword |