Kırmızı Şapka

RedHat, Uygulama Kurulumu, Ayarlar vs.

Salı, Ağustos 18, 2009

Mac de Jdeveloper kurmadan once:

Source: http://www.oracle.com/technology/products/jdev/htdocs/11/knownissues.html#install4

Installing JDeveloper on Mac OS

Some additional steps are required to install JDeveloper on Mac OS beyond what is documented in the installation guide. Please refer to the installation guide for additional details on installing JDeveloper for Mac OS X.

1. Make Java 6 the default VM.

  • Run Java Preferences (in /Applications/Utilities/Java)
  • Move the Java SE 6 (64 Bit) to the top of the Java application versions list (General tab)

2. Create a symbolic link for classes.jar

  • Enable root user:
    • Open the Directory Utility app from Applications - Utility
    • Ensure the settings are unlocked (click the lock if necessary)
    • Choose Edit > Enable Root User and provide the root user password.
    • Note, you can return to this same screen to disable root user after creating the symbolic link
  • Create the symbolic link:
    cd /SystemLibrary/Frameworks/JavaVM.framework/Versions/1.6.0/Home/
    su root
    mkdir jre
    cd jre
    mkdir lib
    cd lib
    ln -s ../../../Classes/classes.jar rt.jar

Etiketler:

Cumartesi, Ağustos 15, 2009

SVN

svn delete ._Scanner.frame
svn commit
svn st
svn propedit svn:ignore NSQL ( NSQL altinda bazi dosyalari ignore etmek icin)
svn propdel svn:executable Visitors/*

svn den baglantiyi koparmak icin:
$ rm -rf `find . -type d -name .svn`

Etiketler:

Çarşamba, Ağustos 05, 2009

Twitter

MicrosoftYahooDeal.txt
http://search.twitter.com/search.atom?phrase=microsoft+yahoo+deal&since=2009-07-15&rpp=100&page

for i in {1..15} ; do t=`cat MicrosoftYahooDeal.txt`; echo $t$i; done

Kod asagidakini yaratacak:
http://search.twitter.com/search.atom?phrase=microsoft+yahoo+deal&since=2009-07-15&rpp=100&page=1
http://search.twitter.com/search.atom?phrase=microsoft+yahoo+deal&since=2009-07-15&rpp=100&page=2
...

Etiketler:

curl

Url.txt dosyasi olustur asagidaki gibi:

url = "http://etc.com"


Sonra curl -K Url.txt -A "Curl" diyerek istediklerini al.

Ya da

cat url.txt | xargs curl

Etiketler: