-
Navigate to Control Panel-->Programs and Features, click on Turn Windows features on or off.
The select TFTP Client from the check list.
Click ok
-
Navigate to Control Panel-->Network and Internet-->Network and Sharing Center, click on the left pane Change adapter settings.
Select IPv4 line.
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
| # Easily read my website in your terminal | |
| curl -s https://selfup.me | grep ,, | cut -c6- | |
| # enjoy! |
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
| wmic cpu get loadpercentage | |
| wmic cpu get name,CurrentClockSpeed,MaxClockSpeed | |
| systeminfo |
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 sync upstream | |
| function gsu() { | |
| set -e | |
| UPSTREAM_CHECK=$(git remote -v | grep upstream || echo '') | |
| if [[ $UPSTREAM_CHECK == '' ]] | |
| then | |
| echo "NO UPSTREAM SET -- ABORTING" | |
| exit 1 | |
| fi |
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
| extern crate fut; | |
| use fut::{open_file_as_string, write_file}; | |
| fn main() { | |
| let input = open_file_as_string("./fixtures/input.txt"); | |
| let inputs = input.split(""); | |
| let mut new_contents: Vec<String> = vec![]; |
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
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "github.com/selfup/horde" | |
| ) | |
| func main() { |
Using BusDog on Windows 10 and pluging in the Flex 1500 I could find:
- VID=2192 hex->0x890
- PID=1502 hex->0x5DE
How the radio was told to start:
https://gist.github.com/selfup/89e3ffcad7ee1298eb6de30c137d215a
How the radio was told to stop:
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
| Id Type Time Length Hex Ascii | |
| 22 Out (USB URB Function: 9) 0.000000 20 2d 00 00 00 00 00 04 fc 00 00 00 00 00 00 00 00 00 00 00 00 -................... | |
| 22 Out (USB URB Function: 9) 0.001021 20 2e 00 00 00 00 00 04 ec 00 00 00 00 00 00 00 00 00 00 00 00 .................... | |
| 22 In (USB URB Function: 9) 1.758670 0 |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
| Id Type Time Length Hex Ascii | |
| 22 Out (USB URB Function: 9) 0.000000 20 00 00 00 00 00 00 04 c4 00 00 00 00 00 00 00 00 00 00 00 00 .................... | |
| 22 In (USB URB Function: 9) 0.002572 8 39 01 00 00 a5 0b 0d 0f 9....... | |
| 22 Out (USB URB Function: 9) 1.993371 20 01 00 00 00 00 00 04 c4 00 00 00 00 00 00 00 00 00 00 00 00 .................... | |
| 22 In (USB URB Function: 9) 0.002627 8 39 01 01 00 a5 0b 0d 0f 9....... | |
| 22 Out (USB URB Function: 9) 0.003938 20 02 00 00 00 00 00 04 c4 00 00 00 00 00 00 00 00 00 00 00 00 .................... | |
| 22 In (USB URB Function: 9) 0.003093 8 39 01 02 00 a5 0b 0d 0f 9....... | |
| 22 Out (USB URB Function: 9) 1.677804 20 03 00 00 00 00 00 04 c4 00 00 00 00 00 00 00 00 00 00 00 00 .................... | |
| 22 In (USB URB Function: 9) 0.003166 8 39 01 03 00 a5 0b 0d 0f 9....... | |
| 22 Out (USB URB Function: 9) 0.002329 20 04 00 00 00 00 00 04 b3 00 00 00 00 00 00 00 00 00 00 00 00 .................... |
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
| package main | |
| import ( | |
| "errors" | |
| "fmt" | |
| ) | |
| func main() { | |
| first := []int{1, 2, 3} | |
| second := []int{4, 5, 6} |