I removed all my scripts from Smustard and they will not be available anymore on that site. ever.
maybe somedays will make them available for free on github.com. till then you can use Chris improved version.
I removed all my scripts from Smustard and they will not be available anymore on that site. ever.
maybe somedays will make them available for free on github.com. till then you can use Chris improved version.
wonder if http://plugins.ro/labs/suave.htm still works nowadays. as I moved to OSX, anyone wants to try it out ?
@iichiversii said:
Love the new google maps integration, looks fantastic but I was expecting more from the showcase tbh...
the only thing is that is not Google Maps (also in iOS6 there will be no default YouTube app)
every programmer with his 'own' taste
BracketHighlighter plugin:
SublimeText version: I find underline better
oopsy. forgot about it. hard at work with TBD v3
@unknownuser said:
the DLLs are statically linked they can link just the part of the library required. ??
DLL = Dynamic Linked Library - so they cannot be statically linked (except embedding it in resource and dropping it on execute )
statically linked libraries (eg. CRT.lib) should add only the used routines to the final executable.
yes. the dll were created to solve the duplicate code problem but they created another problem - the DLL hell.
but for SU extensions having a couple of kB duplicated for the CRT is ok. also it makes the installing easier.
if you want to have fun - http://www.benshoof.org/blog/minicrt/
@thomthom said:
But I am not including it myself - it's an error that comes from the Ruby missing.h file... :S
that's why you need to have #define HAVE_ISINF 1
in your code, so that Ruby will not double include
@unknownuser said:
Any way to make VC++'s nmake rely on the bundled SketchUp CRT instead of the VSC++ CRT? (splitting my quest into two projects here...)
compile with the same VC or dont link any CRT and use a replacement static lib (there are some minimal libs on the net)
@unknownuser said:
And can you explain what your workaround actually do?
isinf is already defined in PellesC libraries so there is no need to include that file again.
http://msdn.microsoft.com/en-us/library/windows/desktop/ms682586(v=vs.85).aspx - the DLL is already loaded by Sketchup so it will use that version. also you can copy the msvcrt-ruby18.dll
in your dev directory to be picked up when debugging outside Sketchup (which I hope you do, otherwise dev time is slooooow)
@unknownuser said:
Is it possible to use to to just compile the C source without creating a project? (just trying to find a solution without creating too many extra project files
the .ppj file is just a collection of commands. you can easily convert it to a .bat file if you dont want to have extra files (remember to create the .def file for the .dll link)
yes. my old example did that. best is to check the DLL imports section to see what functions it requires
**Mark:**unless it replies with "reddit is under heavy load right now, sorry. Try again in a few minutes."
an example of Reddit AMA - Louis CK
thanks for feedback. please provide more information so I will be able to debug it:
if there are any sensitive info please email me to books@
regarding one click checkout we are working with our payment processing (FetchApp) to create a solution.
statement modifiers = conditional statements onto the end of a normal statement
` name = first_name + last_name rescue "John Doe"
John Doe # if first_name and last_name are not defined`
have a separate loader.rb that checks if LIB exists and has functions required.
if yes, require/load rest of your code, if not ...