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
SELECT | |
dest.sn, | |
dest.ort, | |
dest.kreis, | |
ACOS( | |
SIN(RADIANS(src.lat)) * SIN(RADIANS(dest.lat)) | |
+ COS(RADIANS(src.lat)) * COS(RADIANS(dest.lat)) | |
* COS(RADIANS(src.lon) - RADIANS(dest.lon)) | |
) * 6380 AS distance | |
FROM |
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
body { | |
background-color: white; | |
} | |
.model-box { | |
padding: 1em; | |
border: 1px solid #ccc; | |
-webkit-border-radius: 10px; |
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
noflo = require 'noflo' | |
class CoffeeCounter extends noflo.Component | |
description: 'This is my test description.' | |
icon: 'gear' | |
constructor: -> | |
@current = 0 | |
@inPorts = |
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
<?php | |
$fmt = new NumberFormatter('de_DE', NumberFormatter::DECIMAL); | |
$float = 123.456; | |
echo $fmt->format($float); |
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.util.ArrayList; | |
import javax.vecmath.Point3d; | |
import javax.vecmath.Point3d_karthesian; | |
import javax.vecmath.Point3d_spherical; | |
import javax.vecmath.Vector3d; | |
public class Runner { | |
/** |
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
package javax.vecmath; | |
import com.sun.corba.se.impl.interceptors.PICurrent; | |
public class Point3d_karthesian extends Point3d { | |
public Point3d_karthesian() { | |
super(); | |
} | |
public Point3d_karthesian(double[] arg0) { |
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.BorderLayout; | |
import java.awt.EventQueue; | |
import java.awt.FlowLayout; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.nio.MappedByteBuffer; | |
import java.nio.channels.FileChannel; |
NewerOlder