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
| def elo_tilos_jelzes_utasitasok(): | |
| pins.digital_write_pin(DigitalPin.P0, 0) | |
| def on_button_pressed_a(): | |
| global szabad | |
| while foglalt: | |
| basic.pause(100) | |
| if szabad: | |
| szabad = False | |
| elo_tilos_jelzes_utasitasok() |
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
| http://example.com/foobar/http://example.com/foobar/ |
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
| [core] | |
| quotepath = false | |
| whitespace = trailing-space,space-before-tab | |
| autocrlf = input | |
| [alias] | |
| # "commit" roviditesek | |
| ci = commit | |
| cia = commit -a | |
| ciam = commit --amend | |
| cif = commit --fixup |
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
| Without Subselect: | |
| SELECT count(child.cid), parent.cid, user.uid, user.name, node_field.nid, node_field.title | |
| FROM comment_field_data as parent | |
| LEFT JOIN comment_field_data AS child ON parent.cid = child.pid | |
| INNER JOIN users_field_data as user ON parent.uid=user.uid | |
| INNER JOIN node_field_data as node_field ON parent.entity_id=node_field.nid | |
| GROUP BY parent.cid | |
| ORDER BY COUNT(child.cid) DESC; |
OlderNewer