Skip to content

Instantly share code, notes, and snippets.

View hig-dev's full-sized avatar

Halil hig-dev

View GitHub Profile
@hig-dev
hig-dev / apple_appstore_review_feeds.cs
Created March 23, 2021 19:14
Apple AppStore: Create review feeds
using System;
using System.Collections.Generic;
// https://dotnetfiddle.net/IihQdc
public class Program
{
public static void Main()
{
const string AppId = "1551690203";
const int BatchSize = 100;
@hig-dev
hig-dev / CustomSlider.cs
Last active April 9, 2019 14:48 — forked from benstevens48/CustomSlider.cs
Custom UWP Slider with workaround for the LayoutCycleException bug
using System;
using Windows.Foundation;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
namespace SliderLayoutCycleBugDemo.Controls
@hig-dev
hig-dev / CircularProgressDrawable.java
Last active August 29, 2015 14:14 — forked from castorflex/CircularProgressDrawable.java
Circular Indeterminate ProgressBar Port for Xamarin Android [C#]
public class CircularProgressDrawable : Drawable, IAnimatable
{
private static readonly IInterpolator AngleInterpolator = new LinearInterpolator();
private static readonly IInterpolator SweepInterpolator = new DecelerateInterpolator();
private const int AngleAnimatorDuration = 2000;
private const int SweepAnimatorDuration = 600;
private const int MinSweepAngle = 30;
private readonly RectF _fBounds = new RectF();
private ObjectAnimator _mObjectAnimatorSweep;