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
Sub LangInFrames() | |
scount = ActivePresentation.Slides.Count | |
For j = 1 To scount | |
fcount = ActivePresentation.Slides(j).Shapes.Count | |
For k = 1 To fcount | |
If ActivePresentation.Slides(j).Shapes(k).HasTextFrame Then | |
ActivePresentation.Slides(j).Shapes(k).TextFrame.TextRange _ | |
.LanguageID = msoLanguageIDEnglishUK | |
End If | |
Next k |
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
# https://docs.opencv.org/3.1.0/d7/d1b/group__imgproc__misc.html#gga4e0972be5de079fed4e3a10e24ef5ef0a353a4b8db9040165db4dacb5bcefb6ea | |
import cv2 | |
# http://docs.astropy.org/en/v0.2.3/io/fits/index.html | |
from astropy.io import fits | |
image_file = 'c:/temp/tree-nocolortype.fit' | |
image_data = fits.getdata(image_file, ext=0) | |
cv2.imwrite('c:/temp/COLOR_BayerGB2BGR.png', cv2.cvtColor(image_data, cv2.COLOR_BayerGB2BGR )) | |
cv2.imwrite('c:/temp/COLOR_BayerBG2BGR.png', cv2.cvtColor(image_data, cv2.COLOR_BayerBG2BGR )) |
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
<?xml version="1.0"?> | |
<Objects> | |
<Obj> | |
<Object>Acamar</Object> | |
<NameNotes>NexStar Named Star List</NameNotes> | |
<Type>S</Type> | |
<Const>Eri</Const> | |
<Mag>3.2</Mag> | |
<Size></Size> | |
<RA>02:58:16.0</RA> |
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
<?xml version='1.0' encoding='UTF-8'?> | |
<server xmlns="urn:jboss:domain:18.0"> | |
<extensions> | |
<extension module="org.jboss.as.clustering.infinispan" /> | |
<extension module="org.jboss.as.clustering.jgroups" /> | |
<extension module="org.jboss.as.connector" /> | |
<extension module="org.jboss.as.deployment-scanner" /> | |
<extension module="org.jboss.as.ee" /> | |
<extension module="org.jboss.as.ejb3" /> |