Skip to content

Instantly share code, notes, and snippets.

View aravindhkumar23's full-sized avatar

aravindhkumar aravindhkumar23

View GitHub Profile
@aravindhkumar23
aravindhkumar23 / viewcontroller
Last active May 31, 2016 11:10
Add animation for swipe from left to right -Swift
import UIKit
import QuartzCore
enum CustomSegueAnimation {
case SwipeFromleft
}
// MARK: Segue class
class CustomSegue: UIStoryboardSegue {
@aravindhkumar23
aravindhkumar23 / directories
Created February 26, 2015 08:20
python gets folder name and file how to iterate and get the for loop value in dashboard page.--Django
import os
k=[]
l=[]
lis=[]
rootDir = '.'
for dirName, subdirList, fileList in os.walk(rootDir, topdown=False):
# print("dir is " , dirName)
lis=lis+[dirName]
for fname in fileList:
# print("file is " , fname)