I hereby claim:
- I am projectinitiative on github.
- I am kylepetryszak (https://keybase.io/kylepetryszak) on keybase.
- I have a public key ASCkjdmSHqiIEnGB9101TqFuZEamxp1Ebhq8NB0XlprOuwo
To claim this, I am signing this object:
// FlutterLicense utility class | |
import 'package:flutter/foundation.dart'; | |
class FlutterLicense extends LicenseEntry { | |
final packages; | |
final paragraphs; | |
FlutterLicenses(this.packages, this.paragraphs); | |
} |
using System; | |
/* | |
Created by Kyle on 3/8/2015. | |
Note: This class is simply a calculation/String formatting class designed to calculate the elapsed time between two clock readings. | |
To fully integrate this into a practical use please use a thread to call either getElapsedTime or getElapsedMilliTime and display that text to the screen. | |
*/ | |
namespace CommonLibrary.Helpers | |
{ | |
public class Stopwatch |
FutureBuilder( | |
future: _getUID(), | |
builder: (BuildContext context, AsyncSnapshot<String> snapshot) { | |
if (snapshot.connectionState != ConnectionState.done) | |
return new Center( | |
child: new Container(child: CircularProgressIndicator())); | |
return new StreamBuilder( | |
stream: _getStream(snapshot.data.toString()), | |
builder: (BuildContext context, userSnapshot) { | |
// TEMPORARY FIX |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
for D in `find . -maxdepth 1 -mindepth 1 -type d` | |
do | |
echo $D | |
cd $D | |
git pull | |
cd .. | |
done |
#!/usr/bin/env bash | |
comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u) |
#!/usr/bin/env python3 | |
''' | |
The following link is where the majoity of the code is pulled from: | |
https://www.simplifiedpython.net/python-gui-login/ | |
''' | |
from tkinter import * | |
import os |
#ifndef SAFE_QUEUE | |
#define SAFE_QUEUE | |
#include <queue> | |
#include <mutex> | |
#include <condition_variable> | |
// A threadsafe-queue. | |
template <class T> | |
class SafeQueue |