This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get install squid3 apache2-utils | |
htpasswd -c /etc/squid/passwords hexaminer2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"0.890583111609397":"-----BEGIN PGP PUBLIC KEY BLOCK-----\r\nCharset: UTF-8\r\n\r\nxv8AAABSBAAAAAATCCqGSM49AwEHAgMECyZ/7qRnDMjyp5Pn3yV834Eio6sHKb3i\r\njdoQ8IjplSYBvxVq5WWbOZ8OH1tSKNO7UUgnvFew6cbR3cL7UGasj83/AAAACDxn\r\naXRodWI+wv8AAACOBBATCABA/wAAAAWCWLSLq/8AAAACiwn/AAAACZCkWUSe4/aG\r\nzv8AAAAFlQgJCgv/AAAABJYDAQL/AAAAApsD/wAAAAKeAQAAGvsA/ApzbSEKN6Hn\r\neIDqMBxb8H9qUqPs1AQ6/Qyt7B7anT2lAP0QYVG9cgBbctTtq3ku3T7YrpZwA2V3\r\nl5ZJ2LrAlWPyWs7/AAAAVgQAAAAAEggqhkjOPQMBBwIDBDsjy1XA8RxktMUcN3bF\r\nrKWfDlFCZ1TTsn3QBknUz2nZhxs5ziEhQ3FGzn82376YNkS1PsSignCiH50tF3oc\r\npc0DAQgHwv8AAABtBBgTCAAf/wAAAAWCWLSLq/8AAAAJkKRZRJ7j9obO/wAAAAKb\r\nDAAApAsA/it/wmjCYPXGQerIMjB3n8TIPABiB7Mm+akFZ2ohxwoDAPwP0I14Zhcp\r\nK93RCph7z8tFXZB0PzzBs1XXWReNqQny+Q==\r\n=vwGJ\r\n-----END PGP PUBLIC KEY BLOCK-----\r\n"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?import javafx.scene.layout.AnchorPane?> | |
<?import javafx.scene.layout.Pane?> | |
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.76-ea" xmlns:fx="http://javafx.com/fxml/1"> | |
<children> | |
<Pane layoutX="14.0" layoutY="14.0" prefHeight="33.0" prefWidth="63.0" style="-fx-background-color: #dddddd; -fx-border-color: #cfcfcf #cfcfcf #b5b5b5 #cfcfcf; -fx-border-width: 1;" /> | |
<Pane layoutX="83.0" layoutY="14.0" prefHeight="33.0" prefWidth="63.0" style="-fx-background-color: #0095c7; -fx-border-color: #008cba; -fx-border-width: 1;" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OpenGL vendor string: Intel Open Source Technology Center | |
OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile | |
OpenGL core profile version string: 3.3 (Core Profile) Mesa 11.0.2 | |
OpenGL core profile shading language version string: 3.30 | |
OpenGL core profile extensions: | |
OpenGL version string: 3.0 Mesa 11.0.2 | |
OpenGL shading language version string: 1.30 | |
OpenGL extensions: | |
Linux ubuntu 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#v1.0 | |
#HELYX's Samsung 350V Laptop Power Save Script. | |
#Need acpi_call.ko. Tested Rolling Arch Linux | |
echo "$(sh /usr/bin/turn_off_gpu.sh | grep "work" | wc -l) acpi aygıtına kapatma komutu başarı ile uygulandı." | |
#echo 'auto' > '/sys/bus/i2c/devices/i2c-7/device/power/control'; | |
echo '1' > '/sys/module/snd_hda_intel/parameters/power_save'; | |
echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Platform.runLater(() -> { | |
//GUI Elemanının işi | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Task<Integer> task = new Task<Integer>() { | |
@Override | |
protected Integer call() { | |
//ARKAPLAN İŞİNİ BURADA YAPACAK | |
return 1; | |
} | |
}; | |
Thread tsk = new Thread(task, "İşlem Adı"); | |
tsk.setDaemon(true); | |
tsk.start(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Go to Start > Run (or [Win Key] + [R]) and run regedit.exe | |
Navigate and expand to sub-key HKEY_LOCAL_MACHINE\HARDWARE\ACPI\DSDT (screenshot). | |
Rename sub-key VBOX__ to NOBOX__ | |
Navigate and expand to sub-key HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION (screenshot). | |
Select sub-key System. | |
Right-click value SystemBiosVersion and select ‘Modify‘. | |
Change the text part “VBOX” to “NOBOX” and click ‘OK‘ (screenshot). | |
Close the registry editor. | |
source: https://itsultra.wordpress.com/2011/12/07/how-to-play-maplestory-using-virtualbox-4-1-x/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gsettings set org.gnome.desktop.wm.preferences resize-with-right-button true | |
gsettings set org.gnome.desktop.wm.preferences mouse-button-modifier '<Super>' |
NewerOlder