- ESP32 would be an ideal choice because:
- Built-in WiFi capabilities
- Multiple GPIO pins for expansion
- Large community support
- Arduino-compatible for easier programming
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
| # Exploited PS4 Blocklist (https://gbatemp.net/threads/aio-ps4-exploit-guide.497858/) | |
| #[community.playstation.net] | |
| asm.np.community.playstation.net | |
| ps4.updptl.np.community.playstation.net | |
| ps4.updptl.sp-int.community.playstation.net | |
| ps4updptl.eu.np.community.playstation.net | |
| ps4updptl.jp.np.community.playstation.net | |
| ps4updptl.jp.sp-int.community.playstation.net | |
| ps4updptl.uk.np.community.playstation.net |
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
| try: | |
| import sqlparse.format as sqlformat | |
| except ImportError: | |
| def sqlformat(query, **kwargs): | |
| """Monkey patch sqlparse.format if package not installed""" | |
| return query | |
| def debug_query(query, engine): | |
| """Return a parametrized and formated sql query for debugging |
I hereby claim:
- I am aqualad on github.
- I am aqualad (https://keybase.io/aqualad) on keybase.
- I have a public key ASCCIkNZTWVOVVIXNao99vyMuhT8eFzvcf0WQziuX-Xc7go
To claim this, I am signing this object:
- In the application toolbar
Select Sublime Text > Preferences > Package Settings > Either Babel or ESLint > Settings Default - Find the setting for the
node_modulesinstall path in OS X
- currently located at
/usr/local/lib/node_modules
A Pen by Codemash D3 Presentation on CodePen.
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
| teams: | |
| - name: Purple | |
| description: nothing compares 2 U | |
| - name: Green | |
| description: blah blah blah | |
| - name: Magenta | |
| - name: Olive | |
| employees: | |
| - |
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
| from uuid import uuid4() | |
| newline_in = 4 # newline after x rows | |
| number_of_uuids = 4 * 16 # how many uuids to generate | |
| for i in range(0, number_of_uuids): | |
| if i and i % newline_in == 0: | |
| print(" ") | |
| uuid4() | |
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
| let selector, | |
| $elements, | |
| testsPassed, | |
| totalTestsPassed; | |
| // Select the 7th <td> from every <tr>, excluding the first <tr> | |
| selector = '#testresult tr:not(:first-child) td:nth-child(7)'; | |
| // Get array of selected elements | |
| $elements = $$ |
NewerOlder