This file has been truncated, but you can view the full file.
This file contains 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" ?> | |
<kml xmlns="http://www.opengis.net/kml/2.2"> | |
<Document id="root_doc"> | |
<Schema name="freeling_buildings" id="freeling_buildings"> | |
<SimpleField name="BLD_PG_PID" type="string"></SimpleField> | |
<SimpleField name="BLD_PID" type="string"></SimpleField> | |
<SimpleField name="DT_CREATE" type="string"></SimpleField> | |
<SimpleField name="DT_LT_MOD" type="string"></SimpleField> | |
<SimpleField name="DT_RETIRE" type="string"></SimpleField> | |
<SimpleField name="CAPT_DATE" type="string"></SimpleField> |
This file contains 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 requests, pickle | |
from datetime import datetime | |
import json, pytz | |
import pandas as pd | |
from influxdb import DataFrameClient | |
login_url = "https://monitoring.solaredge.com/solaredge-apigw/api/login" | |
panels_url = "https://monitoring.solaredge.com/solaredge-web/p/playbackData" | |
SOLAREDGE_USER = "" # web username |
This file contains 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
chromegreen.pw | |
graucoay.net | |
9newsdaily.com | |
adclick.g.doublecklick.net | |
adeventtracker.spotify.com | |
ads-fa.spotify.com | |
analytics.spotify.com | |
audio2.spotify.com | |
b.scorecardresearch.com | |
bounceexchange.com |
This file contains 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
```javascript | |
%%javascript | |
require.config({ | |
packages: [{ | |
name: 'highcharts', | |
main: 'highcharts' | |
}], | |
paths: { |
This file contains 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
*** efl | |
export CFLAGS="-O3" | |
export CFLAGS="$CFLAGS -ffast-math" | |
export CFLAGS="$CFLAGS -fexpensive-optimizations" | |
export CFLAGS="$CFLAGS -frename-registers" | |
export CFLAGS="$CFLAGS -ftree-vectorize" | |
export CFLAGS="$CFLAGS -march=armv7-a" | |
export CFLAGS="$CFLAGS -mfpu=neon-vfpv4" | |
export CFLAGS="$CFLAGS -mfloat-abi=hard" |
This file contains 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
ac_add_options --enable-default-toolkit=cairo-gtk3-wayland | |
ac_add_options --disable-debug | |
ac_add_options --disable-debug-symbols | |
ac_add_options --disable-av1 | |
ac_add_options --disable-webrtc | |
ac_add_options --disable-tests |
This file contains 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
general info | |
mkdir -pv ~/chromium | |
cd ~/chromium | |
git config --global user.name “Joel Maranhao” | |
git config --global user.email “[email protected]” | |
git config --global core.autocrlf false | |
git config --global core.filemode false | |
git config --global color.ui true |
This file contains 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
------- init() function -------- | |
monitor_width = m_destRect.Width(); // from kodi | |
monitor_height = m_destRect.Height(); // from kodi | |
struct drm_mode_create_dumb dumb_buffer; | |
/* create dumb buffer */ | |
memset(&dumb_buffer, 0, sizeof(dumb_buffer)); |
This file contains 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
{ | |
"prototxt": "MobileNetSSD_deploy.prototxt", | |
"caffemodel": "MobileNetSSD_deploy.caffemodel", | |
"classes": [ | |
"background", | |
"aeroplane", | |
"bicycle", | |
"bird", | |
"boat", | |
"bottle", |
This file contains 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
### | |
### script to detect objects in live video | |
### using MobileNets+SDD | |
### | |
### by: memeka <[email protected]> | |
### | |
import argparse, json | |
import time, datetime, threading | |
import numpy, cv2 |
NewerOlder