Skip to content

Instantly share code, notes, and snippets.

View vinicius-campelo's full-sized avatar
:octocat:
I may be slow to respond.

Vinicius Campelo vinicius-campelo

:octocat:
I may be slow to respond.
View GitHub Profile
@vinicius-campelo
vinicius-campelo / testeQgis.py
Created January 22, 2023 02:15
Gist created by PyQGIS Console
features=park_layer.getFeatures()
for f in features:
attr=f.attributes()
print(attr)
@vinicius-campelo
vinicius-campelo / pyqgis_snippet.py
Created January 22, 2023 02:14
Gist created by PyQGIS Console
features=park_layer.getFeatures()
for f in features:
attr=f.attributes()
print(attr)
@vinicius-campelo
vinicius-campelo / SmartPort.pas
Created April 29, 2021 19:47 — forked from stijnsanders/SmartPort.pas
SmartPort: bare-bones wrapper for a serial connection (with some USB support)
unit SmartPort;
interface
uses Windows, SysUtils, Classes;
{$D-}
type
TSmartPortParity=(ppParityEven,ppParityMark,ppParityNone,ppParityOdd,ppParitySpace);