Monday, February 22, 2016

Outguess 1.1.2

New version of Outguess


Outguess

A new version of Outguess was released !


Version 1.1.2

  • Correction of the menubar.
  • Correction of the window “About”.

Release of Tracking 1.0.2

Tracking 1.0.2 has been approved by the Apple review team.

Tracking 1.0.2

What's New in version 1.0.2 :

  • Correction of the window "About".

Tracking 1.0.2 is available now in the Mac App Store.

Download Tracking

Release of Cryptext 1.0.9

Release of Cryptext 1.0.9


Cryptext 1.0.9

In this update :


  • Minimum system requirements required.(10.8)
  • Addition of a comprehensive help.
  • Addition of the "Keychains" support for passwords and keys.
  • Addition of "Block preferences" to block preference in a state.
  • Addition of a checkbox to disable check spelling.
  • Addition of new Retina icons.
  • Correction of the encryption / decryption.
  • Correction of the "About" Window.
  • Correction of the help menu.
  • Correction of the logs.
  • Correction of the menubar.
  • Correction of the translations.
  • Correction of the toolbar.
  • Correction of the code.

Monday, May 18, 2015

Wedding Planner 1.0.8

Wedding Planner

What’s New in Version 1.0.8

– Correction of logs erasing.
– Correction of preparations erasing.
– Correction of preparations importing.
– Correction of contacts erasing.
– Correction of the menus.

Wedding Planner 1.0.8 is available in the Mac App Store.

https://itunes.apple.com/us/app/wedding-planner/id470250540

Thursday, March 27, 2014

Enable NTFS Write Support in Mac OS X

With device name.


1) My NTFS disk is named "Apple" :

LABEL=Apple

2) Edit fstab file :

sudo pico /etc/fstab

3) Add the following line inside /etc/fstab :

LABEL=Apple none ntfs rw,auto,nobrowse

4) Create a symbolic link from Volumes :

sudo ln -s /Volumes ~/Desktop/Volumes

5) Create a symbolic link from my NTFS disk "Apple" :

sudo ln -s /Volumes/Apple ~/Desktop/Volumes/Apple

Note :


/etc/fstab can be :

LABEL=Apple none ntfs rw,auto,nobrowse
LABEL=device-1 none ntfs rw,auto,nobrowse
LABEL=device-2 none ntfs rw,auto,nobrowse
LABEL=device-3 none ntfs rw,auto,nobrowse
LABEL=device-4 none ntfs rw,auto,nobrowse

 NTFS RACK

6) Give your NTFS disk initial state and mounting the regular way :

sudo rm /etc/fstab

Spicing it a bit with UUID.


1) Get UUID from my NTFS disk "Apple" :

diskutil info /Volumes/Apple | grep UUID

2) Add the following line inside /etc/fstab :

UUID=UUID_FROM_DISKUTIL none ntfs rw,auto,nobrowse

Friday, December 13, 2013

Voice MacOSX

 Voice Mac

Convert texts to audio files easily... Write your text, click export. You'll obtain an audio file of your writing. Write and let your computer read for you... Localized audio examples on https://soundcloud.com/rbcafe

Features :

- Your text can be read in realtime.
- Export of text to sound file.
- Export of text.
- Choice of the voice.
- Choice of the voice's rate.

Saturday, July 20, 2013

Zen MacOSX


Zen helps you to focus on your writing...

1) Zen is free.
2) It's writing only.
3) It's fullscreen.

What's New in Version 1.0.1

- Addition of an help menu.
- Correction of the screenshots.
- Correction of the text encoding.

Friday, December 14, 2012

Wedding Planner software for mac

Wedding Planner is "THE" Wedding planner software for mac

Wedding Planner

Wedding planner helps you prepare your wedding with ease. Record your activities and plan your budget easily. Store your ideas, your notes, your links.

Wedding Planner

1) Wedding Planner is 1.99$, available on Mac App Store.
2) Wedding Planner is for Mac OSX.
3) Wedding Planner is easy to use.

Monday, October 22, 2012

Deny NetBIOS

sudo ipfw add 1 deny tcp from any to any 137 out
sudo ipfw add 2 deny udp from any to any 137 out
sudo ipfw add 3 deny udp from any to any 138 out

Friday, October 19, 2012

Recover a corrupted zip

1) Copy archive to desktop.
2) Open terminal.
3) Type this without quotes "zip -FF ~/desktop/archive-name.zip --out ~/desktop/archive-new.zip".
4) Is this a single-disk archive? (y/n): y.
5) Your new archive is created on the desktop.
6) In case the name is no coherent. Add .zip to produced file.
7) Uncompress new archive.

Secure Time Machine backup

In Terminal :

: ifconfig en0 | grep ether
: ether 00:00:00:00:00:00

Get name of your computer inside Sharing Preferences :

: Mac

Mac_000000000000

Open disk utility :

1) Create a new empty image.
2) Save as Mac_000000000000 inside Time Machine hard drive.
3) Name : Mac.
4) Size : As you wish.
5) Format : Mac OS Extended (Journaled).
5) Encryption 128 or 256bits.
6) Partition : Single partition - Apple Partition Map.
7) Image format : sparse bundle disk image.
8) You are asked to enter a secure password.

: Drag and drop secure password from login to system.
: Inside Time Machine Preferences select Time Machine hard drive containing the new secure empty image.

Delete a Certification Authority from Keychains

1)Backup Certificates.

sudo cp /System/Library/Keychains/SystemRootCertificates.keychain /System/Library/Keychains/SystemRootCertificates.keychain.bak

2)Extract "SHA1" from the specific Certificate.
3)Delete Certificate.

sudo security delete-certificate -Z "SHA1" /System/Library/Keychains/SystemRootCertificates.keychain

Thursday, October 18, 2012

Disable AirDrop

To disable AirDrop :

defaults write com.apple.NetworkBrowser DisableAirDrop -boolean YES

To enable AirDrop :

defaults write com.apple.NetworkBrowser DisableAirDrop -boolean NO