Skip to content

Instantly share code, notes, and snippets.

View Jaha96's full-sized avatar
🏔️

Jarkynbyek Japar Jaha96

🏔️
  • Riskmonster LLC
  • Osaka, Japan
  • 12:59 (UTC +09:00)
View GitHub Profile
@skdblog1999
skdblog1999 / dart-practice-problems.md
Last active December 11, 2024 20:11
Dart Practice Problems

Dart Practice Problems

Total Problems - 54

Question Sources - w3resource.com


  1. Write a Dart program to print the following string in a specific format Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are" Output:
@mattwang44
mattwang44 / download_from_s3_async.py
Last active November 21, 2024 02:50
async download from AWS S3 using aiobotocore
import os
import asyncio
import aiobotocore
import io
from PIL import Image
AWS_ACCESS_KEY_ID = os.environ['AWS_ACCESS_KEY_ID']
AWS_SECRET_ACCESS_KEY = os.environ['AWS_SECRET_ACCESS_KEY']
@leandrobmarinho
leandrobmarinho / yolo.py
Last active December 11, 2021 09:37
An example in Python using Yolo from Opencv.
import cv2
import numpy as np
scale = 0.00392
classes_file = "coco.names"
weights = "yolov2.weights"
config_file = "yolov2.cfg"
# read class names from text file
classes = None