- HyperMesh overview:
[file:///C:/Program%20Files/Altair/12.0/help/hm/hmbat.htm?hypermesh.htm][1]
-
HyperMesh Tutorials
[file:///C:/Program%20Files/Altair/12.0/help/hm/hmbat.htm?hypermesh_tutorials.htm][2]
-
HyperWorks Desktop Overview:
# http://www.holoborodko.com/pavel/2011/02/01/how-to-compile-qt-4-7-with-visual-studio-2010/ | |
@@echo off | |
CALL "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" /x64 | |
set QTDIR=C:\Qt\5.2.1 | |
set PATH=%QTDIR%\bin;C:\Qt\qt-creator-opensource-src-3.0.1\bin;C:\Qt\jom;C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin;%PATH% | |
set QMAKESPEC=win32-msvc2010 | |
cd C:\Qt\5.2.1 | |
cmd | |
[file:///C:/Program%20Files/Altair/12.0/help/hm/hmbat.htm?hypermesh.htm][1]
HyperMesh Tutorials
[file:///C:/Program%20Files/Altair/12.0/help/hm/hmbat.htm?hypermesh_tutorials.htm][2]
HyperWorks Desktop Overview:
Useful when inserting rows into postres (like when seeding data from a .sql dump) messes up the database. | |
http://stackoverflow.com/questions/244243/how-to-reset-postgres-primary-key-sequence-when-it-falls-out-of-sync | |
// Login to psql and run the following | |
// What is the result? | |
SELECT MAX(id) FROM your_table; | |
// Then run... |
git clone ssh://[email protected]/~/path_to.git | |
Article at: http://toroid.org/ams/git-central-repo-howto |
# Export the Heroku PG database to a local dump file | |
# https://devcenter.heroku.com/articles/heroku-postgres-import-export#export | |
heroku pgbackups:capture | |
curl -o latest.dump `heroku pgbackups:url` | |
# Install postregs & Setup password | |
# https://help.ubuntu.com/community/PostgreSQL | |
# List databases | |
sudo -u postgres psql -l |
Batch mode solidworks: http://ossandcad.blogspot.com/2008/04/batch-mode-solidworks.html
Example use case:
MaterialPropertyValues Property (IModelDoc2)
def wrapper_for_operation | |
e = AsRefArg::new_obj | |
w = AsRefArg::new_obj | |
instance.call_operation(args, e, w) | |
parse_error_warnings(*WIN32OLE::ARGV[1..2]) | |
end | |
def parse_error_warnings(e, w) | |
# handle e and w args |
http://www.dotnetthoughts.net/setting-an-application-on-top-other-windows-using-c/
http://stackoverflow.com/questions/2027536/setting-a-windows-form-to-be-bottommost
http://msdn.microsoft.com/en-us/library/windows/desktop/ms633545(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/ms633499(VS.85).aspx
see http://guides.rubyonrails.org/3_2_release_notes.html | |
This makes it possible to write the following: | |
class Order < ActiveRecord::Base | |
def cancel! | |
transaction do | |
lock! | |
# ... cancelling logic |