Skip to content
View sinabigo's full-sized avatar

Block or report sinabigo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Apple Watch ECG Activation Record ##... Apple Watch ECG Activation Record ## فعال سازی ECG در‍‌ اپل واچ
    1
    <?xml version="1.0" encoding="UTF-8"?>
    2
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    3
    <plist version="1.0">
    4
    <dict>
    5
    	<key>HKAtrialFibrillationDetectionOnboardingCompleted</key>
  2. another version of the hangman game ... another version of the hangman game in python ## بازی ساده حدس کلمه / پایتون ## بازی پایتون
    1
    import string
    2
    import random
    3
    from words_json import words
    4
    
                  
    5
    # randomly select word from words list
  3. message with dropbox python api clie... message with dropbox python api client. Crappy python, my bad ## پیام با دراپ باکس
    1
    import asyncio
    2
    import aiohttp
    3
    from codetiming import Timer
    4
    import dropbox
    5
    
                  
  4. Basic minecraft chat client written ... Basic minecraft chat client written in Python # کلاینت اصلی چت بازی ماینکرافت
    1
    #!/usr/bin/env python3
    2
    """
    3
    Simple script that implements the minecraft protocol
    4
    to create a basic chat client for said game.
    5
    No encryption, no online mode, no parsing of chat messages.
  5. Tetris implementation in Python # پ... Tetris implementation in Python # پیاده سازی تتریس در پایتون
    1
    #!/usr/bin/env python3
    2
    #-*- coding: utf-8 -*-
    3
    
                  
    4
    # Very simple tetris implementation
    5
    #