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()" ) |
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
; 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
" 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
@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
<?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
import BaseHTTPServer | |
from SimpleHTTPServer import SimpleHTTPRequestHandler | |
import sys | |
import base64 | |
key = "" | |
class AuthHandler(SimpleHTTPRequestHandler): | |
''' Main class to present webpages and authentication. ''' | |
def do_HEAD(self): |
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
;=============================================== | |
; Created on Jan.10th, 2015 | |
; <------------------Summary------------------> | |
; Default Simulator : spectre | |
; Default Folder : ./simulation | |
; Spectre Options : APS+ 64bit Multi-thread psfbin | |
; HSPICE Options : HPP 64bit Multi-thread tr0 Waveview | |
; Anyline starts with a semi-comma (;) is comment and will be omited by Cadence | |
;=============================================== | |
; Do not show What's new popup window |
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
# Copyright (C) 2011, Giovanni Di Milia | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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
`include "discipline.h" | |
module polyres_hdl (n2, n1, ctrl2, ctrl1); | |
//(wr, lr, rtemp, jc1a, jc1b, jc2a, jc2b, tc1, tc2, etch, tnom, rsh0, rmaxvcoef, rminvcoef) | |
electrical n2, n1, ctrl2, ctrl1; | |
parameter real lr=0.0;parameter real wr=0.0; | |
parameter real rtemp=($temperature - 273.15); | |
parameter real jc1a = 0;parameter real jc1b = 0; | |
parameter real jc2a = 0;parameter real jc2b= 0; |
NewerOlder