Skip to content

Instantly share code, notes, and snippets.

View adam4designSSS's full-sized avatar
🏠
Working virtual

ghadah adam adam4designSSS

🏠
Working virtual
  • ADAM for immersive technology
  • cairo
  • 12:20 (UTC -12:00)
  • X @adam4designs
View GitHub Profile
import 'package:flutter/material.dart';
void main() => runApp(
MaterialApp(
home: BallPage(),
),
);
class BallPage extends StatelessWidget {
@override
import 'dart:async';
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
Future<List<Result>> fetchResults(http.Client client) async {
final response = await client.get('https://api.myjson.com/bins/j5xau');
@wongsyrone
wongsyrone / ps3_hangman.py
Created May 24, 2018 03:09
hangman game py3
# Hangman game
#
# -----------------------------------
# Helper code
# You don't need to understand this helper code,
# but you will have to know how to use the functions
# (so be sure to read the docstrings!)
import random