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 bash | |
| # Logs all current ROS topics to files | |
| declare -a pids | |
| declare -a topics | |
| CYAN="\033[0;36m" | |
| RED="\033[0;31m" | |
| NO_COLOR="\033[0m" |
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
| E/Sensors (11896): poll() failed (Interrupted system call) | |
| E/Sensors (11896): poll() failed (Interrupted system call) | |
| W/Watchdog(11896): *** WATCHDOG KILLING SYSTEM PROCESS: Blocked in monitor com.android.server.wm.WindowManagerService on foreground thread (android.fg), Blocked in handler on ui thread (android.ui), Blocked in handler on WindowManager thread (WindowManager) | |
| W/Watchdog(11896): foreground thread stack trace: | |
| W/Watchdog(11896): at com.android.server.wm.WindowManagerService.monitor(WindowManagerService.java:10704) | |
| W/Watchdog(11896): at com.android.server.Watchdog$HandlerChecker.run(Watchdog.java:147) | |
| W/Watchdog(11896): at android.os.Handler.handleCallback(Handler.java:733) | |
| W/Watchdog(11896): at android.os.Handler.dispatchMessage(Handler.java:95) | |
| W/Watchdog(11896): at android.os.Looper.loop(Looper.java:137) | |
| W/Watchdog(11896): at android.os.HandlerThread.run(HandlerThread.java:61) |
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/use-Rlog/RLOG-RILC( 327): qmi_ril(0/327): [cmd-22(144)] qcril_qmi_nas_util_convert_nas_srv_status_to_ril_reg_status: ... is voice supported on lte dyn 1, setting 0 | |
| I/use-Rlog/RLOG-RILC( 327): qmi_ril(0/327): [cmd-22(144)] qcril_qmi_nas_is_in_service_of_technology: .. param 1 | |
| I/use-Rlog/RLOG-RILC( 327): qmi_ril(0/327): [cmd-22(144)] qcril_qmi_nas_is_in_service_of_technology: .. cache valid 0 | |
| I/use-Rlog/RLOG-RILC( 327): qmi_ril(0/327): [cmd-22(144)] qcril_qmi_nas_util_convert_nas_srv_status_to_ril_reg_status: ... is voice supported on lte dyn 1, setting 0 | |
| D/use-Rlog/RLOG-RIL-QMI( 375): qmuxd: RX 47 bytes on fd=23 from qmux_client_id=b | |
| E/use-Rlog/RLOG-RIL-RAWDATA( 375): service_ID = 3, message_ID = 4d | |
| E/use-Rlog/RLOG-RIL-RAWDATA( 375): 01 0C 00 00 03 01 00 2A 00 4D 00 .. | |
| E/use-Rlog/RLOG-RIL-QMI( 375): [SMDPORT] >> BEFORE, Write SMD Port [fd = 10] [msg_len = 13] | |
| E/use-Rlog/RLOG-RIL-QMI( 375): [SMDPORT] << AFTER, Write SMD Port [rc = 0] | |
| D/RILJ ( 1094): [3795]> DATA_REGISTRATION_STATE |
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
| E/use-Rlog/RLOG-RILD( 300): **RIL Daemon Started** | |
| E/use-Rlog/RLOG-RILD( 300): **RILd param count=1** | |
| E/use-Rlog/RLOG-RIL( 311): loadOpnameStaticTable(): count(1101) | |
| E/use-Rlog/RLOG-RIL( 311): OemInitGprsData() | |
| E/use-Rlog/RLOG-RIL( 311): deactivate_virtual_inet() | |
| E/use-Rlog/RLOG-RIL( 311): deactivate_virtual_inet() : unknown pdp type () down all interface | |
| E/use-Rlog/RLOG-RIL( 311): setting addr for rmnet0: 0 | |
| E/use-Rlog/RLOG-RIL( 311): intfconf_set_flags() | |
| E/use-Rlog/RLOG-RIL( 311): intfconf_clear_addr_ipv6() | |
| E/use-Rlog/RLOG-RIL( 311): intfconf_init_ifr_ipv6() |
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
| # begin build properties | |
| # autogenerated by buildinfo.sh | |
| ro.build.id=JZO54K | |
| ro.build.display.id=JZO54K.N8010XXUCMK2 | |
| ro.build.version.incremental=N8010XXUCMK2 | |
| ro.build.version.sdk=16 | |
| ro.build.version.codename=REL | |
| ro.build.version.release=4.1.2 | |
| ro.build.date=Wed Nov 20 16:29:39 KST 2013 | |
| ro.build.date.utc=1384932579 |
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
| import socket | |
| import struct | |
| import binascii | |
| # Written by Bob Steinbeiser (https://medium.com/@xtalker) | |
| rawSocket = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, | |
| socket.htons(0x0003)) | |
| MAC = '74c24671971c' |
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
| (defun goto-student-feedback () | |
| (interactive) | |
| (string-match | |
| (rx (group "hw" digit) (any ascii) (group "cs30f" (1+ alpha))) | |
| (buffer-file-name)) | |
| (let* ( | |
| (hwnum (match-string 1 (buffer-file-name))) | |
| (username (match-string 2 (buffer-file-name))) | |
| (feedback-path (concat "/home/linux/ieng6/cs30f/public/" hwnum "_feedback/style_feedback_" username)) |
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
| (defun flycheck-fix-css-property-sort-order () | |
| "Fixes SCSS-lint property sort order errors in the current buffer." | |
| (interactive) | |
| (cl-loop for error in flycheck-current-errors | |
| do | |
| (fix-css-property-order error)) | |
| ) | |
| (defun correct-property-order (err) | |
| "Extracts correct CSS property order out of ERR." |
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
| - provide :title, 'Title' | |
| - provide :viewport, 'desktop' | |
| = render 'partials/sidebar' | |
| - action_bar do | |
| div.action-bar-label | |
| = fa_icon('spinner', class: 'fa-spin') | |
| | Loading... |
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
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import SyntaxHighlighter from 'react-syntax-highlighter'; | |
| export default class CodeBlock extends React.PureComponent { | |
| static propTypes = { | |
| value: PropTypes.string.isRequired, | |
| language: PropTypes.string, | |
| } |