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
print("hi") | |
print(dir()) |
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
diff --git a/drivers/sx127x/sx1272/sx1272.c b/drivers/sx127x/sx1272/sx1272.c | |
index c25d3c4..7e9c51e 100644 | |
--- a/drivers/sx127x/sx1272/sx1272.c | |
+++ b/drivers/sx127x/sx1272/sx1272.c | |
@@ -947,8 +947,44 @@ void SX1272SetPublicNetwork( bool enable ) | |
} | |
} | |
+#include "soc/uart_reg.h" | |
+ |
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
$ vagrant rsync --debug | |
INFO global: Vagrant version: 2.0.3 | |
INFO global: Ruby version: 2.4.3 | |
INFO global: RubyGems version: 2.6.14 | |
INFO global: VAGRANT_DEFAULT_PROVIDER="vmware_fusion" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
INFO global: VAGRANT_INSTALLER_ENV="1" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded" | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/2.0.3/gems/vagrant-2.0.3/bin/vagrant" | |
INFO global: VAGRANT_LOG="debug" |
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
#include <stdint.h> | |
#include <stdio.h> | |
#define OUTPUT_SOMEWHERE(...) \ | |
printf(__VA_ARGS__); | |
typedef struct | |
{ | |
size_t something; | |
size_t something_else; |
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
Verifying that "martijnthe.id" is my Blockstack ID. https://onename.com/martijnthe |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "–//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.ubnt.unifi.controller.plist</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>java</string> | |
<string>-jar</string> |
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 threading | |
def wait_until_all_threads_finish(): | |
all_threads = threading.enumerate() | |
all_threads.remove(threading.current_thread()) | |
for t in all_threads: | |
t.join() |
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 imp | |
try: | |
imp.find_module("gdb") | |
except ImportError: | |
raise Exception("This file is a GDB script.\n" | |
"It is not intended to be run outside of GDB.\n" | |
"Hint: to load a script in GDB, use `source this_file.py`") | |
import gdb | |
import re |
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
# !/bin/bash | |
# Copyright (c) 2011 Float Mobile Learning | |
# http://www.floatlearning.com/ | |
# Extension Copyright (c) 2013 Weptun Gmbh | |
# http://www.weptun.de | |
# | |
# Extended by Ronan O Ciosoig January 2012 | |
# | |
# Extended by Patrick Blitz, April 2013 |
NewerOlder