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
| panic(cpu 2 caller 0xfffffe002bf8ca1c): DCP PANIC - ASSERT!AppleDCPDPTXPowerController.cpp:538 No device added after powering on the rails. HPD=0 - dcpav(27) | |
| ASSERT!AppleDCPDPTXPowerController.cpp:538 No device added after powering on the rails. HPD=0 | |
| RTKit: RTKit-2419.101.1.release - Client: local-ipad14dcp.RELEASE | |
| !UUID: fe6311b8-1432-3071-bdc3-8a18a91b68a4 | |
| Time: 0x00000035c045d176 | |
| Faulting task 27 Call Stack: 0x000000000001ea1c 0x000000000001e40c 0x000000000001e210 0x00000000000174a8 0x0000000000058218 0x00000000000fd370 0x000000000001f164 0x00000000000fd0c4 0x0000000000058110 0x0000000000107648 0x00000000000fcce8 0x000000000001ee90 0x0000000000019d54 | |
| RTKit Task List: | |
| name | pri | stack use | status | resource | warning | |
| 0 rtk_background | 007 | 824/2048 | SEMWAIT | 0x87ce70 | |
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
| gource --hide dirnames,filenames --seconds-per-day 0.1 --auto-skip-seconds 1 -1280x720 -o - | ffmpeg -y -r 30 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4 | |
| # дожимаем если надо (можно сразу так в ffmpeg из gource) | |
| ffmpeg -i gource.mp4 -vcodec libx265 -crf 28 output.mp4\ |
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
| ## krk | |
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
| ./adb.exe shell pm uninstall -k --user 0 com.android.calendar #Calendario | |
| ./adb.exe shell pm uninstall -k --user 0 com.android.deskclock #Reloj | |
| ./adb.exe shell pm uninstall -k --user 0 com.android.mms #Mensajes | |
| ./adb.exe shell pm uninstall -k --user 0 com.facebook.appmanager #Facebook App Manager | |
| ./adb.exe shell pm uninstall -k --user 0 com.facebook.services #Facebook Services | |
| ./adb.exe shell pm uninstall -k --user 0 com.facebook.system #Facebook App Installer | |
| ./adb.exe shell pm uninstall -k --user 0 com.google.android.apps.docs #Google Drive | |
| ./adb.exe shell pm uninstall -k --user 0 com.google.android.apps.maps #Google Maps | |
| ./adb.exe shell pm uninstall -k --user 0 com.google.android.apps.photos #Google Photos | |
| ./adb.exe shell pm uninstall -k --user 0 com.google.android.apps.tachyon #Google Duo |
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
| q = document.getElementsByClassName('ui_actions_menu_item') | |
| for (let item of q) { | |
| let qq = item.getAttribute('onclick') | |
| if(qq && qq.startsWith("wall.deletePost")) { | |
| console.log(item.getAttribute('onclick')) | |
| item.onclick() | |
| } |
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
| function sleep(ms) { | |
| return new Promise(resolve => setTimeout(resolve, ms)); | |
| } | |
| async function batchdownload() { | |
| var $recordFrame = $("#Record_frame") | |
| var $checkboxes = $recordFrame.contents().find("em.checkbox"); | |
| var $downloadbtn = $recordFrame.contents().find("div.button.fl-l.download"); | |
| var $deselectbtn = $recordFrame.contents().find("div.button.fl-r.unselect"); | |
| for(var i = 0; i < $checkboxes.length; i++) { |
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
| function door_num(){ | |
| var floor_room_count = 6 | |
| var floor_count = 8 | |
| room_number = 248 | |
| n = room_number/floor_room_count >> 0 | |
| n = n + 1 | |
| n = n / floor_count >> 0 | |
| return n + 1 |