Skip to content
View yaelRashlin's full-sized avatar

Block or report yaelRashlin

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
yaelRashlin/README.md
  • 👋 Hi, I’m @yaelRashlin
  • 👀 I’m interested in Python, Games and everything in between 😊
  • 🌱 I’m currently learning mostly unity
  • 💞️ I’m looking to collaborate on everything interesting
  • 📫 How to reach me? right over here.

Pinned Loading

  1. this is a simple program that looks ... this is a simple program that looks for a specific pattren in files and highlight them
    1
    #!/usr/bin/env python
    2
    import sys, os, optparse, re, pprint as pp
    3
    from colors import Color
    4
    
                  
    5
    #-----------------------------------
  2. a simple script to discover a palind... a simple script to discover a palindrome and the number of iteration
    1
    a = 'abcab'
    2
    a = 'abcabc'
    3
    c = [i for i in a]
    4
    
                  
    5
    count = 0
  3. sync settings vs code sync settings vs code
    1
    sync settings vs code
  4. was trying to play wih VLC on windows was trying to play wih VLC on windows
    1
    import glob, os, sys, subprocess
    2
    
                  
    3
    def play_file_mp3(mp3_f):
    4
        vlc = r"C:\Program Files\VideoLAN\VLC\vlc.exe"
    5
        #Sos.execv(vlc, ['"' + vlc + '"', '"' + mp3_f + '"'])
  5. tst_sets tst_sets
    1
    import pprint as pp
    2
    
                  
    3
    in_li = [[1, 5], [2, 3], [4, 6], [7, 8], [8, 10], [12, 15]]
    4
    in_li = sorted(in_li, key=lambda x: x[0])
    5