Tumgik
#itemb
saltminerising · 1 year
Note
Sure I could sell my chests but H;nnn;;g;nhng;;nnhh; itembs
30 notes · View notes
shinkoscribbles · 9 months
Text
So! I was randomly hit with the urge to do some old art redraws, just for fun to see how I've improved. But instead of choosing a drawing myself, I enlisted some friends to do it! They were linked my old deviantart account, and asked to chose a drawing for me to redo! Here's the first of these, from 2012 chosen by @tigerwriter
Tumblr media
This is a reference for an attempt I once made to convert some of my neopets characters into non-neopet anthro characters, so that I could write them without being pigeonholed by neo's notoriously draconian THINK OF THE CHILDREN limitations. This specific character, Itembe, was a revamp of a skunk aisha character named Zerue, the sidekick, best friend and emotional anchor of main character Gary. Rue was noted for being a total goofus, always cracking jokes, and in the first draft of the story he also got shoved in a fridge, though in later redrafts for the Neopian times I would abandon that aspect and let him live.
And here's the redraw!
Tumblr media
I decided to change up the pose to better reflect the character's personality, so it looked less static and boring. I also made some tweaks to his outfit so it looked more cohesive and aesthetically pleasing. If I was redesigning this character for serious use I would do some pretty in depth culture studies because despite being very obviously Arab coded his name is… Zulu??? And his armor I don't know what is going on with, culturally speaking. But in the interest of not having it look like a completely different character for the purpose of a comparative redraw, I settled for some more minor tweaks.
And here's the two drawings side by side, 2012 -> 2023.
Tumblr media Tumblr media
Overall I'm very happy with how this turned out! It's been a while since I drew an anthro character like this, though they used to be my go-to. I feel like I've gotten a lot more comfortable with costume design, proportions and making poses look natural.
Look forward to more of this little exercise in the future!
1 note · View note
kwamalogo · 1 year
Photo
Tumblr media
【itembe】 . ここブギリ村は首都に向かう幹線道路沿いで、 大統領府のすぐ近くてことで、 外からの人、政府関係の人が昔からたくさん住んでいて電気も幹線道路沿いに早くから普及してたけど、少し中に入るとのんびり昔ながらの家屋や生活をしてる人もたくさんいた。 . でも、前大統領の 『名ばかりでなく政府機能もドドマに移す!』 という意向から物や人、家の増加はすさまじく、 もはや家の近所で道に迷うレベル😆 . そんな中変わらずリンバの製作、牧畜等を営みながらこの伝統家屋で生活する彼のような人に会うとやっぱりホッとする😌 . 帰りにはなんだか自然と足がおとーちゃんのお墓に足が向いてお墓参り🪦🐾 . #ブギリ村  #ドドマ  #タンザニア #ゴゴ民族 #イロのある生活  #kwamalogo #dodoma #tanzania #wagogo https://www.instagram.com/p/CpM3WO8to5C/?igshid=NGJjMDIxMWI=
0 notes
neonlane · 2 years
Text
just ordered the last of my Christmas gifts and immediately remembered the postal strikes :))))
power to them and if none of it arrives ill simply just live w it but also. my itembs and objects
0 notes
hyperwavecrd · 7 years
Video
youtube
73 notes · View notes
tyrenopanz · 7 years
Photo
Tumblr media Tumblr media Tumblr media Tumblr media
I'd like to say we are keeping the spirit of D1 alive, but someone's gonna say I'm wrong. So whatever.
229 notes · View notes
preraphaelitebimbo · 3 years
Text
no disrespect to yale students they're a very smart bunch but once i told this kid i know who goes there that i wanted to major in art history and he said, completely deadpan, "you do know that's not a real major right"
2 notes · View notes
Photo
Tumblr media Tumblr media Tumblr media
TEAM SHENANIGANS
8 notes · View notes
vidarrsaber · 5 years
Text
My Brain: Dont buy horns and goth shit you dumb punk motherfucker
Me, foaming at the mouth: HHHSGSGHEGEH... ITYMES....
1 note · View note
helladrift · 2 years
Photo
Tumblr media
🍋 #helladrift 🚗 @itemb https://instagram.com/helladrift_/ __________________________ #drift #stance #bmw #e36 https://www.instagram.com/p/CeW6PRaMRqJ/?igshid=NGJjMDIxMWI=
9 notes · View notes
yuugamijin · 4 years
Text
Tumblr media
hell yea hell yea... itembs....
26 notes · View notes
codehunter · 2 years
Text
Join multiple tables in SQLAlchemy/Flask
I am trying to figure out the correct join query setup within SQLAlchemy, but I can't seem to get my head around it.
I have the following table setup (simplified, I left out the non-essential fields):
class Group(db.Model): id = db.Column(db.Integer, primary_key = True) number = db.Column(db.SmallInteger, index = True, unique = True) member = db.relationship('Member', backref = 'groups', lazy = 'dynamic')class Member(db.Model): id = db.Column(db.Integer, primary_key = True) number = db.Column(db.SmallInteger, index = True) groupid = db.Column(db.Integer, db.ForeignKey('group.id')) item = db.relationship('Item', backref = 'members', lazy = 'dynamic')class Version(db.Model): id = db.Column(db.Integer, primary_key = True) name = db.Column(db.String(80), index = True) items = db.relationship('Item', backref='versions', lazy='dynamic') class Item(db.Model): id = db.Column(db.Integer, primary_key = True) member = db.Column(db.Integer, db.ForeignKey('member.id')) version = db.Column(db.Integer, db.ForeignKey('version.id'))
So the relationships are the following:
1:n Group Member
1:n Member Item
1:n Version Item
I would like to construct a query by selecting all Item-Rows from the database, that have a certain version. Then I would like to order them by Group and then by Member. The output using Flask/WTForm should look something like this:
* GroupA * MemberA * ItemA (version = selected by user) * ItemB ( dito ) * Member B * ItemC ( dito ) ....
I have come up with something like the following query, but I am pretty sure that it is not correct (and inefficient)
session.query(Item,Member,Group,Version) .join(Member).filter(version.id==1) .order_by(Group).order_by(Member).all()
My first intuitive approach would have been to create something like
Item.query.join(Member, Item.member==Member.id) .filter(Member.versions.name=='MySelection') .order_by(Member.number).order_by(Group.number)
but obviously, this doesn't work at all. The join operation on the Version table does not seem to produce the type of join between the two tables that I expected. Maybe I am totally misunderstanding the concept, but after reading the tutorials this would have made sense to me.
https://codehunter.cc/a/flask/join-multiple-tables-in-sqlalchemy-flask
0 notes
passionnotaddiction · 6 years
Photo
Tumblr media
@itemb
5 notes · View notes
paperbeatsscissors · 7 years
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
many new itembs in my society6 https://society6.com/paperbeatsscissors/prints?show=new
334 notes · View notes
thecountydiary · 4 years
Text
BOMET REGISTERS FIRST COVID-19 CASE AS TENSION ESCALATE
BOMET REGISTERS FIRST COVID-19 CASE AS TENSION ESCALATE
BY CHEPKEIY.
BOMET REGISTERS FIRST COVID-19 CASE: One person has succumbed to covid-19 complications in Bomet county.
A 55 year old man who hails from Kagawet village itembe location is said to have been suffering from diabetes and on April 4 the report indicated that he was admitted at Longisa Hospital and died the following day.
The police said the deceased is alleged to have traveled from…
View On WordPress
0 notes
bekadaily255 · 6 years
Photo
Tumblr media
Mbaroni kwa kumiliki na kuuza vifaa vya pikipiki visivyo halali Na Timothy Itembe, Tarime Jeshi la Polisi Mkoa wa Kipolisi, Tarime na Rorya limemtia nguvuni Mfanyabiashara wa duka la vifaa vya pikipiki Kata ya Turwa wilayani hapa, Wankru Mariba (38) kwa kosa la kupatikana na mali za wizi.
0 notes