Hi,
You can use the below scrip to send thank you notes to your friends who wished for your birthday on your Facebook timeline.
Instructions:
#Get the Facebook access token:
<form action="http://maps.google.com/maps" method="get" target="_blank"> | |
<label for="saddr">Where are you now ?</label> | |
<input type="text" name="saddr" /> | |
<input type="hidden" name="daddr" value="<Your desired destination address>" /> | |
<input type="submit" value="Find me the way" /> | |
</form> |
Hi,
You can use the below scrip to send thank you notes to your friends who wished for your birthday on your Facebook timeline.
Instructions:
#Get the Facebook access token:
SELECT @@SERVERNAME AS SqlServerInstance, | |
db.name AS DatabaseName, | |
SUM(CASE WHEN af.groupid = 0 THEN 0 ELSE 8192.0E * af.size / 1048576.0E END) AS DatabaseSize, | |
SUM(CASE WHEN af.groupid = 0 THEN 8192.0E * af.size / 1048576.0E ELSE 0 END) AS LogSize, | |
SUM(8192.0E * af.size / 1048576.0E) AS TotalSize | |
FROM master..sysdatabases AS db | |
INNER JOIN master..sysaltfiles AS af ON af.[dbid] = db.[dbid] | |
WHERE db.name NOT IN('distribution', 'Resource', 'master', 'tempdb', 'model', 'msdb') | |
GROUP BY db.name |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import java.util.*; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: pradeepnayak |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import java.util.*; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: pradeepnayak |
from 'A' to 'B' | |
--------------------------------------------- | |
x,y,g,h,f | |
15,15,0,14,14 | |
15,14,1,13,14 | |
15,13,2,12,14 | |
15,12,3,11,14 | |
15,11,4,10,14 | |
15,10,5,9,14 | |
15,9,6,8,14 |
from 'A' to 'B' | |
----------------------------------------------- | |
x,y,g,h,f | |
1,15,0.0,11.0,11.0 | |
1,14,1.0,10.0,11.0 | |
1,13,2.0,9.0,11.0 | |
1,12,3.0,8.0,11.0 | |
1,11,4.0,7.0,11.0 | |
1,10,5.0,6.0,11.0 | |
1,9,6.0,5.0,11.0 |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import java.util.*; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: pradeepnayak |
import java.io.*; | |
import java.util.*; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: pradeepnayak | |
* Date: 23/02/14 | |
* Time: 3:45 PM | |
* To change this template use File | Settings | File Templates. |
import java.io.*; | |
import java.util.*; | |
public class tsp { | |
public static void main(String[] args) throws IOException{ | |
int taskNumber = Integer.parseInt(args[1]); | |
Graph g = new Graph(); | |
buildShortestPathGraph(g,taskNumber,args); |