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
| <?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> | |
| <x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='Image::ExifTool 10.16'> | |
| <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'> | |
| <rdf:Description rdf:about="" xmlns:GPano="http://ns.google.com/photos/1.0/panorama/"> | |
| <GPano:UsePanoramaViewer>True</GPano:UsePanoramaViewer> | |
| <GPano:CaptureSoftware>Photo Sphere</GPano:CaptureSoftware> | |
| <GPano:StitchingSoftware>Photo Sphere</GPano:StitchingSoftware> | |
| <GPano:ProjectionType>equirectangular</GPano:ProjectionType> | |
| <GPano:PoseHeadingDegrees>0.0</GPano:PoseHeadingDegrees> |
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
| @echo off | |
| :: 在下一行设置Inkscape可执行文件的路径 | |
| set inkscape="C:\Program FIles\Inkscape\Inkscape.com" | |
| :: 枚举当前文件夹下所有的PDF,将文本转换为路径,并抛弃页面边界以外的对象 | |
| for %%i in (*.pdf) do ( | |
| echo processing %%i | |
| %inkscape% %%i -C -T -A %%i | |
| ) |
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
| " Vim syntax file | |
| " This is based on spice.vim by Noam Halevy | |
| " Language: correct highlight cadence cds*.lib assura*.lib file | |
| " Maintainer: Garrett Zhou | |
| " Last Change: 09/20/2016 | |
| " Comments: Add follow line into your ~/.vimrc file | |
| " autocmd BufNewFile,BufRead cds*.lib,assura*.lib set syntax=cdslib | |
| " filetype indent off | |
| " For version 5.x: Clear all syntax items |
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
| ; Calibre Netlist Export Setup | |
| ; DO NOT MODIFY | |
| ; DO NOT DELETE | |
| cdlOutKeys = list(nil | |
| 'simStopList '("auCdl") | |
| 'simViewList '("auCdl" "schematic") | |
| 'globalGndSig "" | |
| 'globalPowerSig "" | |
| 'shrinkFACTOR 0.0 | |
| 'checkScale "meter" |
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
| ; ============================== | |
| Append below code to your effective .cdsinit file | |
| ; ============================== | |
| ; first, define xterm function | |
| procedure(xterm() | |
| let((current_session netlist_directory top_cellview currentWorkingDir) | |
| ;get current session | |
| current_session = asiGetCurrentSession() | |
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
| ; Bindkey setting for Cadence Virtuoso Schematic Composer | |
| ; Author: Garrett Zhou | |
| ; Reference: Cadence build-in example schBindKeys.il | |
| ; 9 to add net probe, SHIFT+9 to delete net probe, CTRL+9 to delete all probe | |
| ; Mouse-Btn1 Double click to Descend, Mouse-Btn3 Double click to Return | |
| when( isCallable(`schGetEnv) | |
| hiSetBindKeys("Schematics" list( | |
| list("<Key>9" "geEnterAddNetProbe()" ) | |
| list("<Key>(" "geEnterDeleteNetProbe()" ) |
OlderNewer