Skip to main content

Posts

Showing posts from May, 2016

Xcode - File was built for archive which is not the architecture being linked armv7s or armv6s or i386

Xcode build/linking problem When you are trying to run on an external device you can get this error. I've spent a lot of time to find a solution. Just make sure that "Build Active Architecture Only" is set to Yes for Debug and NO for Release (or you will get a warning when publishing/uploading the app in the store). You can find the option in the "Build Settings" of your application in xcode.

Remove border, border radius, shadow from the owl slideshow in Opencart

 Open the owl css  catalog/view/javascript\jquery/owl-carousel/owl.carousel.css and remove the following: .owl-wrapper-outer {     border: 4px solid #fff;     -webkit-border-radius: 4px;     -moz-border-radius: 4px;     -o-border-radius: 4px;     border-radius: 4px;     -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2);     -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2);     -o-box-shadow: 0 1px 4px rgba(0,0,0,.2);     box-shadow: 0 1px 4px rgba(0,0,0,.2); } that's all. Works on opencart 2.2

FIX - Invalid command: inetc::get or inetc::put with NSIS

 When you get one of the following errors: Invalid command: inetc::get Invalid command: inetc::put You need to make sure that you have installed the inetc plugin that can be downloaded from the NSIS website. If you still  have problems when compiling your script go to your NSIS folder (ex.: c:\Program Files\NSIS\Plugins) and copy INetC.dll from the "x86-unicode" or "amd64-unicode" subfolder. If you have an x86 installation it should be better to use the x86-unicode.

How to get a full system report on windows without external software using only the command line

If you need a fast way to get a system hardware and software report on quite any windows Operating System you just need to run the following command: msinfo32 /report report.txt It's the best wayt to get system informations without instally any third party software. It works on: Windows 10 Windows 8.1 Windows 8 Windows 7 Windows vista Windows xp (?)

Raise errors on org.salsalabs.com to show the source code.

 https://org.salsalabs.com/ <? var URI = Request.getURI();     //This provides default values if not supplied by the TAF or initial Salsa page    var theTitle = "JVP: ";     var theFBshare = "";     var theFBshareTitle = "";     var theFBshareImage = "https://org.salsalabs.com/o/301/images/Salsa-Donate-Header-Logo.png";         //This section is needed on the regular Salsa template only         function getFbshare($path){                  var redirect=$path;                  newred = redirect.split("tell_a_friend_KEY=");                  var tafkey = newred[1] ? newred[1].replace(/\D+/g,"") : "";                  var taf=salsa.getObject("tell_a_friend",tafkey);                  if (taf != null) {                  if(taf.PT_facebook_share != null)  theFBshare = taf.PT_facebook_share;                  if(taf.PT_facebook_title != null)  theFBshareTitle = taf.PT_facebook_title;                  if(t

How to convert cdr to iso on mac osx - very easy

from the terminal type $ cp diskimage.cdr diskimage.iso If you like the GUI just duplicate the file and change the file extension from the Finder. The extensions should be enabled in the finder preferences. In most cases it should be enough and a lot you have problems with your ISO file try the following command $ hdiutil makehybrid -iso -joliet -o myimage.iso myimage.cdr