Edilg
kiwifarms.net
- Joined
- Jul 30, 2020
Leave him alone! His daughterwife is still learning.Are barber shops closed in Virginia? If not, why does this 35 year old man have a fucking bowl cut?
View attachment 1496519
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Leave him alone! His daughterwife is still learning.Are barber shops closed in Virginia? If not, why does this 35 year old man have a fucking bowl cut?
View attachment 1496519
Well maybe if his mother wasn't in hospice she could get up on the milk crate and reach over into Ralph's pen to teach Fai Fai how it's done!Leave him alone! His daughterwife is still learning.
He did get a hair cut not that long ago. It looks like he puts gel in it or something. I don't know if it's to darken it or fight the curls.Are barber shops closed in Virginia? If not, why does this 35 year old man have a fucking bowl cut?
View attachment 1496519
Whatever it is, it sure is uglyHe did get a hair cut not that long ago. It looks like he puts gel in it or something. I don't know if it's to darken it or fight the curls.
Sorry null, it just seemed like she was trying to weaponize your webzone for personal gain.Because she doesn't want to answer them and hounding her over that shit will just drive her off the site.
This woman has photographs of the gunt, so she has the leverage here. Mind your manners.
since he spends his money on drugs his mom had to do it, she's on benzos, dude, so i think you should cut her the slack she never gets(jking, mAre barber shops closed in Virginia? If not, why does this 35 year old man have a fucking bowl cut?
View attachment 1496519
I have finished the storyfire archive program I was working on, and thought I would share it. if this is of no interest to you just move along and rate me autistic. if you need any help you can pm me, or im sure several others will help you too in the tech support forum.
The program follows the naming standard of @Psicopax so if youre familiar with his youtube-dl config you'll recognize this naming standard.
you just run this program once a day, once an hour if you like. and itll download all the videos off ralphs storyfire
you need to install youtube-dl into python if you havent already
you do that by typing:
pip install youtube_dl
you copy everything from the code below and name it whatever.py then you just run the file and it will create a folder and a textfile called:
Ethan Ralphs Storyfire Archive
EthanRalphsStoryfireArchive.text
the textfile is to ensure you dont download the same video several times.
View attachment 1495552Python:from __future__ import unicode_literals import datetime import json import requests import youtube_dl url = 'https://storyfire.com/app/publicVideos/zXFk00jJiQdROWr1kgukFVFZRi52?skip=0' response = requests.get(url) json_data = json.loads(response.text) class MyLogger(object): def debug(self, msg): pass def warning(self, msg): print(msg) def error(self, msg): print(msg) def my_hook(d): if d['status'] == 'finished': print('Done downloading, now mergning ...') def planB(videoIdentifier): open("EthanRalphsStoryfireArchive.txt", "a") with open('EthanRalphsStoryfireArchive.txt') as data: datafile = data.readlines() found = False for line in datafile: if videoIdentifier in line: return True return False for attrs in json_data['videos']: videoId = attrs['_id'] videoTitle = attrs['title'] if planB(videoId): print(videoTitle + ' has already been downloaded') else: open("EthanRalphsStoryfireArchive.txt", "a").write(videoId+'\n') videoUrl = attrs['vimeoVideoURL'] videoDuration = str(attrs['videoDuration']) videoPublishDate = datetime.datetime.fromtimestamp( int(attrs['publishDate'])).strftime('%m%d%Y') ydl_opts = { 'format': 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio/best', 'outtmpl': 'Ethan Ralph Storyfire Archive/'+videoPublishDate+' - '+videoTitle+' - ('+videoDuration+'s) [%(resolution)s].%(ext)s', 'writethumbnail': 'true', 'verbose': 'true', 'logger': MyLogger(), 'progress_hooks': [my_hook], } with youtube_dl.YoutubeDL(ydl_opts) as ydl: ydl.download([videoUrl]) else: pass
Unironically yes. I won't get the chance to see Serbia again in person for who knows how many years, and having a based autist tape his tour weekends in Belgrade is a nice replacement for going myself.fuck maybe I should join storyfire. Would you guys watch my video of me drunkenly wandering around a Serbian museum pointing at paintings of Nikola Tesla and going "wow this is cool this is really cool wow lotta cool stuff in here glad it got suggested to me"
That's what Gunt gets for accusing Null of wearing pads.I know this is dumb, but I wanted to celebrate the fact that ralph managed to add more pages to his thread in the last 20 days than he had in the year leading up him dating a highschooler.
View attachment 1496267
Why would anyone want to go to Serbia except for getting cheap drugs and go to some degenerate gay bar?Unironically yes. I won't get the chance to see Serbia again in person for who knows how many years, and having a based autist tape his tour weekends in Belgrade is a nice replacement for going myself.
Why would anyone want to go to Serbia except for getting cheap drugs and go to some degenerate gay bar?
Why would anyone want to go to Serbia except for getting cheap drugs and go to some degenerate gay bar?
Thank you for the feedback! It could be because I'm running verbose mode and logging and publishing for warnings. But I'll take a look at it. Thanks!Great job! It keeps giving me a corrupt package error but it keeps downloading so there isn't actually anything wrong. I've noticed Youtube-Dl giving a lot of false errors too so i wouldn't worry about it. Works perfectly.
View attachment 1496560
Some one should edit in the Gunt's face into biggies life after death album cover and call it life after Meth.
Thank you for the feedback! It could be because I'm running verbose mode and logging and publishing for warnings. But I'll take a look at it. Thanks!
edit:
I turned off verbose mode by removing 'verbose': 'true', from here:
View attachment 1496737
and i just typed pass where it said print (warning) here:
View attachment 1496738
It nolonger gives the corrupted errors, which leads me to think, it was just youtube-DL being shady