NVidia G310M Set Performance Level to Zero Force

Section “Device” # Force Powermizer to a certain level at all times # level 0x1=highest # level 0x2=med # level 0x3=lowest Identifier “Videocard0” Driver “nvidia” Option “NoLogo” “True” Option “Coolbits” “13” Option “RegistryDwords” “PowerMizerEnable=0x1; PerfLevelSrc=0x2222; PowerMizerLevel=0x3; PowerMizerDefault=0x3; PowerMizerDefaultAC=0x3” EndSection That’s Devamı…

Maven ile manifest.mf ayarları

<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <classpathPrefix>lib/</classpathPrefix> <mainClass>my.main.class.Main</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <!– this is used for inheritance merges –> Devamı…

Eclipse İnce Ayar

Eclipse Java tabanlı bir geliştirme ortamıdır. Birçok faydası bulunmakla beraber ilk kurulumda birçok gereksiz özellik açık oluyor ve bu yüzden çok fazla sistem kaynağı tüketiyor. Bunun sonucunda da yavaş çalışma, donma, fazla ram tüketme falan filan gibi sıkıntılar oluyor. Eclipse’i Devamı…