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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>OpenLayers Bounding Box Selector Example</title> | |
<script src="http://www.openlayers.org/api/OpenLayers.js"></script> | |
<script> | |
var vectors; | |
var box; |
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 openpyxl import load_workbook | |
wb = load_workbook('vol3.xlsx') | |
print wb.get_sheet_names() | |
#ws = wb.get_sheet_by_name(u'Sheet1') | |
ws = wb.worksheets[0] | |
print ws.max_row, ws.max_column | |
result = [] | |
for row in ws.iter_rows(): |
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
var NOW = new Date(); | |
var TY = NOW.getFullYear(); | |
var TM = NOW.getMonth()+1; | |
function chg_cals(Y,M){ | |
var tb=document.getElementById("cal"); | |
var F=true; | |
var R=0; | |
var D=1; | |
var DW; | |
var DM = new Array(Y,31,28,31,30,31,30,31,31,30,31,30,31); |
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
################################################################# | |
# | |
# Development Configuration | |
# ========================= | |
# | |
# This is a buildout configuration that sets up a development | |
# environment for Plone. It extends buildout.cfg. | |
# | |
# To use this configuration, run buildout via: | |
# |
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
id | name | partner_id | country_id | activity_summary | stage_id | planned_revenue | probability | team_id | |
---|---|---|---|---|---|---|---|---|---|
__export__.crm_lead_2_64f28df9 | Data Scientist; Machine Learning Engineer | Chang Amin | Accessment | New | 0.0 | Sales |
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
# encoding: utf-8 | |
""" | |
Helper objects for rendering to .docx format. | |
""" | |
from __future__ import ( | |
absolute_import, division, print_function, unicode_literals | |
) |
OlderNewer