Saturday, Jan 16th, 2010 by babouyes |
Leave a Comment
Filed under:
mac-tips | Tags:
mac
Hi, for all my friends in the universtiy of munich: there is a way to let keychain store your password for the vpn-connection to lrz. With this, there is no need to enter your password every time you connects to the lrz-network. more information can be found here:
http://www.macosxhints.com/article.php?story=2009082703155512
Wednesday, Aug 12th, 2009 by babouyes |
Leave a Comment
Filed under:
matlab
The Problem
You have a cell array and you want to acces to a subpart of one item. For example if you have the cellarray
myCell = {'asdf';'lkeikdfwer'}
and you want to read the first letter of the first word. How to do that?
The solution
it’s easy… but i didn’t knew that for long… now i’m shure my codes are going to run faster!!! Here is how:
First_letter = myCell{1,1}(1)
Wednesday, Aug 12th, 2009 by babouyes |
Leave a Comment
Filed under:
vba | Tags:
ActiveCell,
ActiveCell.Value,
chr,
excel,
FormulaR1C1,
macro,
vba
Hi there,
today, i have made a small macro to add a formula in a cell with a text inside.Difficult to explain… mabe i’ll try with with an example:
The cell has the content
text over here
. At the end, the cell has the content:
="text over here" & A1
The macro is very easy:
Sub Macro1()
tmp = ActiveCell.Value
ActiveCell.FormulaR1C1 = "=" & Chr(34) & tmp & Chr(34) & " & R156C27"
End Sub
Friday, Aug 7th, 2009 by babouyes |
Leave a Comment
Filed under:
mac-tips | Tags:
mac,
terminal
have you ever tryeid to convert a dmg file into a iso file? here is how:
hdiutil convert /path/to/filename.dmg -format UDTO -o /path/to/savefile.iso
Tuesday, Aug 4th, 2009 by babouyes |
Leave a Comment
Filed under:
iPhone-tips | Tags:
data,
iphone tricks,
roaming
In the iPhone with OS 3.0 and 3.0.1 you turn off Data roaming. Actually, it’s Turned off per default. You can find this Setting under:
Settings/General/Network/Data roaming
Enjoy your iPhone!
Babouyes

Saturday, Jul 25th, 2009 by babouyes |
Leave a Comment
Filed under:
mac-tips | Tags:
html,
symbol
Hi there, have you ever tryied to put the command symbol (cmd, or “apple”) in a webpage? now you can. just insert this code:
⌘ and you’ll get ⌘
Friday, Jul 10th, 2009 by babouyes |
Leave a Comment
Filed under:
mac-tips | Tags:
screenshot
Hi there,
There are some ways to do screenshots in Mac OS X. The easiest way is to hit command+shift+4, drag the area with the mouse and… that’s it. You’ll find the file on the desktop (Something like “Picture 1.png”)
Let me know if you have any problems with your mac, i’ll try to explain it here.
bye
babouyes
Monday, Jul 6th, 2009 by babouyes |
Leave a Comment
Filed under:
mac-tips
Hi!
i have some friends that have a mac, and don’t really use it at its full power. There are a lot of cool tricks that helps you to work with your mac more easy.
I’m starting this series for this friends, and friends of my friends… i hope i can help to simplify your life with your mac.
as allways, feel free to comment and ask me questions. i’ll see how i can help you. If you like it, just recomend it to your friends
babouyes
Monday, Jun 29th, 2009 by babouyes |
Leave a Comment
Filed under:
anouncement
Hi people, now it’s true. i have a new page and a new hosting.
i’m very happy to announce that. please keep in touch.
more information about my hosting here: webhostingpayments.com
Friday, Jun 26th, 2009 by babouyes |
Leave a Comment
Filed under:
matlab | Tags:
matlab,
matlab errors
this is a error that we had while saving big variables (over 2GB).
the solution is easy:
save(filename, ‘data’, ‘-v7.3′)