Skip to content

Instantly share code, notes, and snippets.

View xenups's full-sized avatar
🖖
print('Hello world')

Amir Lesani xenups

🖖
print('Hello world')
View GitHub Profile
@xenups
xenups / install-docker.sh
Created June 3, 2023 18:28 — forked from madkoding/install-docker-deepin.sh
Install Docker-CE script for Deepin Linux
#!/bin/sh
# Shell script to add docker-ce to Deepin Linux repositories
# Remove old docker
sudo apt-get remove -y docker docker-engine docker.io containerd runc
# Install dependencies
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common
@xenups
xenups / main_complete.dart
Created December 27, 2019 02:03 — forked from thedejifab/main_complete.dart
Complete main.dart file for consuming simple REST API with Flutter
import 'dart:async';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {