This file contains hidden or 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
| //If your database is mysql then you can use these codes | |
| try { | |
| Class.forName("com.mysql.jdbc.Driver").newInstance(); | |
| Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/work_training", "root", ""); | |
| Statement st = conn.createStatement(); | |
| String query = "insert into SALES values (?,?, ?, ?,?, ? ,?)"; | |
| PreparedStatement pStatement = conn.prepareStatement(query); | |
| int[] products = new int[]{100, 200, 300, 400}; |
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\*\shell\mgnfcnt] | |
| @="Random Rename" | |
| [HKEY_CLASSES_ROOT\*\shell\mgnfcnt\command] | |
| @="cmd /c For /f \"tokens=1-3 delims=/ \" %%a in ('date /t') do ren \"%1\" %%c-%%b-%%a-%%random%%.*" |
This file contains hidden or 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
| import java.awt.FileDialog; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.nio.ByteBuffer; | |
| import java.nio.charset.Charset; | |
| import java.util.*; |
This file contains hidden or 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
| If you also (like me :)) want to add your current eclipse some new features you can follow this steps. | |
| Help -> Install New Software -> Add | |
| http://download.eclipse.org/releases/helios/ | |
| Choice which of them you want . | |
| Also you can look at source site: |
This file contains hidden or 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
| http://jsminnpp.sourceforge.net |
This file contains hidden or 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
| <html> | |
| <head> | |
| <title> | |
| sample | |
| </title> | |
| <style> | |
| img.grayscale { | |
| filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+, IE10 */ | |
| filter: gray; /* IE6-9 */ | |
| -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */ |
This file contains hidden or 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
| Merhabalar bu yazımda sizlerle bugünkü işletme yüksek lisans mülakatımdan bahsedeceğim. Öncelikli amacım benim gibi internete girip acaba bu yüksek lisans mülakatında | |
| ne soruyorlar ne yapmam gerekir gibi araştırıp sonrasında eli boş bir şekilde mülakata girmek yerine en azından okuyup bir fikir sahibi olmak isteyenlere yol | |
| göstermektir. | |
| Zaten günümün kötü gideceği sabahın 8.30 unda havanın bu kadar sıcak olup otobusun gelmek bilememesinden belliydi. Otobuste şöferle yolcuların dramı ise ayrı bir | |
| yazıya sığacak kadar geniş. |
This file contains hidden or 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
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package takvim; | |
| import javafx.application.Application; | |
| import javafx.fxml.FXMLLoader; |
This file contains hidden or 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
| Parse.initialize(this, "xxxx", "xxxx"); | |
| PushService.setDefaultPushCallback(this, MainActivity.class); | |
| ParseInstallation.getCurrentInstallation().saveInBackground(); | |
| ParseAnalytics.trackAppOpened(getIntent()); | |
| super.onCreate(savedInstanceState); | |
| https://www.parse.com/questions/android-parse-push-notification-not-working |
This file contains hidden or 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
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package javafxapplication4; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.regex.Matcher; |