I hereby claim:
- I am hoornet on github.
- I am hoornet (https://keybase.io/hoornet) on keybase.
- I have a public key ASDGxe27cpXLN9JfMlDdOir3uUsqe_ya6JkEO3oa7n3CWQo
To claim this, I am signing this object:
| void main() { | |
| var t; | |
| print(t ?? 'no value yet'); | |
| t = 5; | |
| print(t ?? 'no value yet'); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| import android.app.AlertDialog; | |
| import android.app.ProgressDialog; | |
| import android.graphics.Color; | |
| import android.graphics.Typeface; | |
| import android.os.Bundle; | |
| import android.os.Handler; | |
| import android.support.v4.app.Fragment; | |
| import android.text.SpannableString; | |
| import android.text.style.ForegroundColorSpan; | |
| import android.text.style.RelativeSizeSpan; |
| package sengvall.flwebb.se.myweather; | |
| import android.os.AsyncTask; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; | |
| import net.aksingh.owmjapis.CurrentWeather; | |
| import net.aksingh.owmjapis.OpenWeatherMap; | |
| import org.json.JSONException; |
| public class SunRiseSetAlgo | |
| { | |
| static double calcSunrise(int dayOfYear, double localOffset, double latitude, double longitude) | |
| { | |
| return calc(dayOfYear, localOffset, latitude, longitude, true); | |
| } | |
| static double calcSunset(int dayOfYear, double localOffset, double latitude, double longitude) | |
| { | |
| return calc(dayOfYear, localOffset, latitude, longitude, false); | |
| } |
| Source: | |
| Almanac for Computers, 1990 | |
| published by Nautical Almanac Office | |
| United States Naval Observatory | |
| Washington, DC 20392 | |
| Inputs: | |
| day, month, year: date of sunrise/sunset | |
| latitude, longitude: location for sunrise/sunset | |
| zenith: Sun's zenith for sunrise/sunset |
| package com.h6ah4i.android.example.dragdrop; | |
| import android.app.Activity; | |
| import android.graphics.Canvas; | |
| import android.graphics.Point; | |
| import android.os.Bundle; | |
| import android.view.DragEvent; | |
| import android.view.LayoutInflater; | |
| import android.view.MotionEvent; | |
| import android.view.View; |
| using System; | |
| using System.Diagnostics; | |
| namespace SunriseCalculator | |
| { | |
| public class SolarInfo | |
| { | |
| public double SolarDeclination { get; private set; } | |
| public TimeSpan EquationOfTime { get; private set; } | |
| public DateTime Sunrise { get; private set; } |
| public ActionResult SearchIndex(string searchString) | |
| { | |
| var movies = from m in db.Movies | |
| select m; | |
| if (!String.IsNullOrEmpty(searchString)) | |
| { | |
| movies = movies.Where(s => s.Title.Contains(searchString)); | |
| } |
| using System; | |
| using System.Diagnostics; | |
| namespace SunriseCalculator | |
| { | |
| public class SolarInfo | |
| { | |
| public double SolarDeclination { get; private set; } | |
| public TimeSpan EquationOfTime { get; private set; } | |
| public DateTime Sunrise { get; private set; } |