#endmonth
Explore tagged Tumblr posts
lovelyhomeskenya · 2 years ago
Photo
Tumblr media
karen near waterfront , lovely 2 bedroom penthouse to let - colonial theme - spacious - borehole - ample parking - common lounge - common garden - secure rent kshs 45k service charge inclusive only 1 deposit 0726378384 more apartment options are available in karen from kshs 25k , some very new #karen #karenrentals #karenproperties #propertiestolet #propertiesforsale #agentvibe #rushhour #endmonth #highendproperties #luxuryrealestate #nyumbazanguvu #househuntinginstyle #mambochapchap 0726378384 https://www.instagram.com/p/CrbZ7e5oiq3/?igshid=NGJjMDIxMWI=
0 notes
spiderpussinc · 1 year ago
Note
Just was thinking about it but I hope your hand is doing alright! I know sometimes I go overboard during a project I'm passionate about :p
Am good! Just taking a rest due to work, its like that every endmonth
4 notes · View notes
biglisbonnews · 1 year ago
Photo
Tumblr media
🦾How to automate your resume using R, R markdown, and GitHub Actions ⚡ Original repo General Automating the creation of your resume is a smart way to save time and keep your information up to date. In this article, I will guide you through a simple process using tools like Rmarkdown and GitHub Actions to automate the generation of your resume. Understanding the Tools 🧰 Before we dive into the process, it's important to understand the tools we'll be using: R: A programming language focused on statistical analysis and data visualization. We'll use R to create and manipulate our resume. Rmarkdown: An extension of R that allows combining code, text, and visual elements into a single document. We'll use Rmarkdown to create a structured resume. GitHub Actions: An automation service provided by GitHub that allows us to create custom workflows. We'll leverage GitHub Actions to automate the resume generation. Docker: A platform that enables packaging, distributing, and running applications in containers. We'll use Docker to create a consistent environment for executing our resume generation process. Now that we understand the tools involved, let's proceed to the automation process: Getting Started First and foremost, you'll need a GitHub account. If you don't have one yet, you can create one here. You'll also need access to a web browser to configure a few things. Step 1: Prepare the Repository 📦 Create a new repository on GitHub for your project. Clone the repository to your computer using Git. Step 2: Add the Resume File 📄 Create a file named data-driven-cv.Rmd (or use any name you prefer, just remember to change it in the action and it should be .Rmd) in the root of your repository. Open the file in your favorite text editor. The file should have this header: --- name: Your name surname: Your surname address: "Your address" profilepic: "./imgs/zero-cool.jpeg" position: "Software Engineer | Frontend Developer" www: "yoursite.dev" email: "[email protected]" github: yourgithub linkedin: yourlinkedin date: "`r format(Sys.time(), '%B %Y')`" headcolor: 7d34eb # Here you can choose your favorite color aboutme: "I am a software engineer with over 6 years of experience in developing modern web applications. My passion lies in creating incredible and functional user interfaces." docname: Resume output: vitae::awesomecv --- Note that in the last attribute of the YAML, you have the vitae::awesomecv. This is just one of the mentioned templates, the others are available here. In this section, personal information and resume formatting are defined. This includes name, surname, position, website links, contact information, resume creation date, header color, and a brief description about you. The file should follow this structure: --- name: Your name surname: Your surname address: "Your address" profilepic: "./imgs/zero-cool.jpeg" position: "Software Engineer | Frontend Developer" www: "yoursite.dev" email: "[email protected]" github: yourgithub linkedin: yourlinkedin date: "`r format(Sys.time(), '%B %Y')`" headcolor: 7d34eb # Here you can choose your favorite color aboutme: "I am a software engineer with over 6 years of experience in developing modern web applications. My passion lies in creating incredible and functional user interfaces." docname: Resume output: vitae::awesomecv --- {r setup, include=FALSE} knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE) require(xfun) packages % detailed_entries( with = title, what = unit, why = detail, when = glue::glue("{startMonth} {startYear} -- {endMonth} {endYear}", .na = ""), where = where ) # Education {r EDUCATION} edu %>% detailed_entries( with = inst, what = degree, why = detail, when = glue::glue("{startYear} -- {endYear}", .na = ""), where = where ) \pagebreak # Skills {r SKILLS} skills %>% detailed_entries( with = area, what = skills, why = detail ) \pagebreak # Projects {r PROJECTS} projects %>% detailed_entries( with = accomplishment, what = area, when = glue::glue("{year}", .na = ""), where = where, why = detail ) # Certifications {r CERTIFICATIONS} certifications %>% detailed_entries( with = accomplishment, what = area, when = glue::glue("{year}", .na = ""), where = where, why = detail ) # Honors and Awards {r HONORS} honors %>% detailed_entries( with = accomplishment, what = area, when = glue::glue("{year}", .na = ""), where = where, why = detail ) Step 2: Creating data.R 📝 Create a folder named "data." Create a file named data.R with the following structure: skills <- tribble( ~area, ~skills, ~detail, "Technology", "Javascript", "Experience with Javascript in front-end projects using React", "Technology", "Javascript", "Redux, Redux Toolkit, and Context API for state management", "Technology", "Javascript", "Jest and React Testing Library for unit tests", NA, "Typescript", "Using Typescript with Prisma for database access.", NA, "Elixir", "Exploring Elixir in personal projects using Phoenix and Ecto.", NA, "Elixir", "Using LiveView for fullstack applications.", NA, "HTML", "Creating semantic and accessible web pages.", NA, "CSS", "Styling projects using SASS and BEM methodology.", NA, "Rust", "Learning Rust for secondary projects.", NA, "Rust", "Following the zero2prod book.", NA, "DevOps", "Experience with virtualization and containers using Docker.", NA, "DevOps", "CI/CD with Github Actions and TravisCI.", NA, "Databases", "Working with SQL and NoSQL databases.", NA, "Databases", "MongoDB for non-relational databases.", "Languages", "Portuguese", "Native language.", "Languages", "English", "Fluent.", ) edu <- tribble( ~degree, ~startYear, ~endYear, ~inst, ~where, ~detail, "Bachelor's in Computer Science", 2015, 2019, "Imaginary University", "Fictional City, Fictional State, Fictional Country", "Studies in algorithms, data structures, and object-oriented programming.", "Master's in Software Engineering", 2020, 2022, "Fictional University", "Fictional City, Fictional State, Fictional Country", "Research in software development, focus on agile methodologies and scalable architectures.", ) work <- tribble( ~title, ~unit, ~startMonth, ~startYear, ~endMonth, ~endYear, ~where, ~detail, "Software Engineer", "TechSoft", "January", 2020, "December", 2022, "Fictional City, Fictional State", "Worked as part of a team in developing web applications using React and Redux.", "Full Stack Developer", "WebTech", "March", 2018, "November", 2019, "Fictional City, Fictional State", "Participated in the development of a full stack application using Node.js, React, and MongoDB.", "Development Intern", "ByteCorp", "July", 2017, "December", 2017, "Fictional City, Fictional State", "Gained practical experience working on software development projects.", ) honors <- tribble( ~area, ~accomplishment, ~year, ~where, ~detail, "Hackathon", "Best Computing Student", 2021, "Wall Street", "Awarded 1 billion dollars.", "Academic Recognition", "Best Computing Student", 2019, "Imaginary University", "Recognized for academic excellence in the field of Computing.", "Programming Competition", "1st Place in Algorithms", 2018, "Fictional Programming Event", "Achieved first place in the algorithm programming competition.", ) projects <- tribble( ~area, ~accomplishment, ~year, ~where, ~detail, "Software Development", "Task Management System", 2022, "TechSoft", "Led the creation of a task management system using React and Redux.", "Software Development", "E-Commerce Platform", 2021, "Fictional Company", "Participated in the development team of an e-commerce platform.", ) certifications <- tribble( ~area, ~accomplishment, ~year, ~where, ~detail, "Professional Certifications", "React Certification", 2021, "Fictional Online Learning Platform", "Obtained React certification to showcase skills in the library.", "Professional Certifications", "Docker Certification", 2020, "Fictional Online Learning Platform", "Achieved Docker certification to demonstrate container knowledge.", ) Step 3: Setting Up Automation 🤖 On GitHub, go to the "Actions" tab in your repository. Click on "Set up a workflow yourself" to create a workflow file. Paste the following code into the file and save: name: CI for CV on: push: paths: - .github/workflows/ci.yml - 'markdowns/**' - 'data/**' branches: - main permissions: write-all jobs: build: name: Creation of resume in en and pt-br runs-on: ubuntu-latest container: image: mlampros/mycvitae:rstudiodev steps: - name: Set up Git repository uses: actions/checkout@v3 - name: Installing texlive run: | sudo apt-get -y update sudo apt-get install -y texlive-base texlive-latex-base sudo apt-get install -y texlive-latex-recommended sudo apt-get install -y texlive-xetex sudo apt-get install -y texlive-fonts-extra - name: Render the resumes run: | Rscript -e "rmarkdown::render(input = file.path(getwd(), 'data-driven-resume.Rmd'), params = list(work_dir = getwd()))" Rscript -e "rmarkdown::render(input = file.path(getwd(), 'data-driven-resume-pt-br.Rmd'), params = list(work_dir = getwd()))" - name: Commit files run: | git config --local user.email "[email protected]" git config --local user.name "GitHub Actions" git add . git commit -am "add the cv in english and pt-br files to the directory of the repository" git push Wrapping Up If you've followed all the steps correctly, you'll likely see the resume with a header similar to the one above. PS: Yeah, I know that the image is in pt-br but I'm lazy and I'm not redo all the steps just to generate one image. Conclusion Automating the creation of your resume using Rmarkdown, GitHub Actions, and Docker is an effective way to keep your information updated and relevant. The benefits range from saving time to showcasing your technical skills to employers. If you have any questions, feel free to reach out! Also, if you have any contributions, please fork the repository and open a pull request. I'll be happy to review them. I hope this article has been helpful and that you're ready to automate your resume. Happy hacking! :) https://dev.to/girordo/how-to-automate-your-resume-using-r-r-markdown-and-github-actions-2bej
0 notes
surasitton · 1 year ago
Text
Tumblr media Tumblr media Tumblr media
#lunch #endmonth 🍽️
#akayakiniku 🥢🥩🥓🥗
#centralladprao 🛍️🚝
#ડꪊ𝕣ꪖડⅈ𝕥_𝕥ꪮꪀ 31.7.2023 😋
1 note · View note
raphaelmwai · 3 years ago
Photo
Tumblr media
Price reduced! found a 1 bedroom duplex in #South c - In a gated community and a compound of 3 units - secure - water 24/7 - open plan kitchen - master ensuite with a bathtub 🛁 - mdf wardrobes with dressing mirror - washing area - extra bathroom - ample parking - zuku and safaricom internet available - very quiet environment - no rough roads - well lit Rent Kshs 26k (service charge inclusive) More details and viewing kindly call 0726028077 #mombasard #mombasardrentals #southc #southcrentals #1bedroom #nairobirentals #nairobi #kenyans #let #Realestateagent #agentvibes #househuntinginstyle #luxuryproperties #bathtub #tuesday #endmonth #red #food #realestatekenya #realitorlife #baller #nyumbazanguvu #agentvibes #age #class #beuty #sassy (at South C) https://www.instagram.com/p/CTiN1vzIQ8H/?utm_medium=tumblr
1 note · View note
deejayblackrose · 6 years ago
Photo
Tumblr media
🚨🚨On Friday,May 31st!🚨🚨 @blackrosekenya and @blackrosemuzik  present #blockparty #madarakaeve edition. 🔈🔉🔉🔊 This all goes down inside @tauruslounge . No cover charge at the door!!! You must be 18 & above to drink 🍻  & party 🎉 🎈 ************************** 🥃🍺🍹🥂                       "#endmonth #party #dj#music #burburu #madarakaeve #weareinfusedjs (at Syokimau Gardens) https://www.instagram.com/p/BxLCBHwl7NS/?utm_source=ig_tumblr_share&igshid=14zlaceyqcmtm
0 notes
Photo
Tumblr media
That monday feeling..... Contact our specialists on;⠀ MOBILE: +254 733 203 050/ +254 737 991 981 TEL: +254(020) 258 9644/ +254 (020) 216 986⠀ EMAIL:[email protected]
0 notes
xoitc · 8 years ago
Photo
Tumblr media
Love what you are doing, I'm sure you success. #success #quote #endmonth #2017 #noaccident #hard #work #studying #learning #go #quotes #life #suggestions
1 note · View note
devgodin-blog · 7 years ago
Photo
Tumblr media
My bank account will rise today 💰 💰 #salary #endmonth #coder #code #programmer #job #payment #coding #load #work #data #jobmoney #payoff #freelancer
0 notes
feysal-anthony-nair · 7 years ago
Photo
Tumblr media
Friday fly day #friday #endmonth #artdirector #cool (at Hurlinghum Nairobi)
0 notes
jejakgorengan · 8 years ago
Text
Soal Belajar
P.S : Lame-ass boring post
Kata orang banyak, belajar itu bisa di mana saja. Setuju.
Belajar sendiri punya spektrum yang luas dalam definisi, relatif.
Tahun ini saya akan berumur 20 tahun, perubahan angka puluhan di umur saya. Hal menarik memang bagaimana kita berusaha memaknai umur dengan kontemplasi terhadap waktu yang terpakai dan komparasi terhadap individu-individu lainnya. Di umur 20 tahun Edith Piaf mulai karir bermusik profesional, Wallace sendiri –Alfred Russel Wallace –mulai perjalanan ekspedisi di umur yang sama, dan banyak orang-orang berpengaruh lainnya bahkan memulai sesuatu yang berpengaruh besar ke hidupnya di awal 20an atau bahkan sebelum menginjak 20 tahun. Ini bukan sebuah komparasi, mengingat saya, Piaf dan Wallace bukan dalam garis start yang sama tetap ini hanya sebagai patokan dan pengingat untuk terus berusaha untuk mengejar keduanya.
Sekali lagi, belajar.
Kata yang diwanti-wanti ayah ibu di rumah, untuk tiap rantau yang bertujuan untuk sekolah atau kuliah. “Belajar yang baik,” “Jangan suka malas kuliah,” “Dengerin itu dosennya,” sebagai contoh, belajar dikorelasikan dengan belajar formal di kampus atau sekolah.
Belajar, kata yang juga dinanti-nanti hasilnya oleh ayah ibu yang tetap di rumah.
Yang diwanti dan dinanti, belajar.
Saya banyak belajar, meski tidak pernah cukup. Hal yang saya senangi adalah bahwa saya sadar, ada yang berubah dikarenakan saya belajar. Sesederhana itu, semua juga mungkin seperti itu. Semua sedang belajar, untuk nanti yang baik.
Belajar, di awal saya sudah bilang bahwa definisi belajar itu relatif. Belajar formal, belajar tidak formal, belajar apa saja. Kita akan belajar paling banyak dari interaksi dengan individu lain, entah itu manusia, rumput, atau entitas lain—dasar dari kontemplasi.
Belajar yang sampai saat ini belum beres karena tidak ada indeksnya bagi saya adalah yang bertopik pendewasaan. Bukan dewasa dalam terminologi embriologi, tapi dewasa dalam terminologi psikologi, sosiologi, antropologi—gaktau juga makna dari ‘logi’ di atas. Di awal saya masuk kuliah, saya akui saya tidak tahu how to properly behave, jujur, sesuatu yang kadang saya sedihi (dan kadang saya juga masih tidak tahu how to behave) tapi hal yang jelas adalah saya belajar. Beruntung bagi saya bahwa ditakdirkan untuk kuliah di Bandung, yang katanya orang-orangnya pada ramah (kalau dibandingin adab daerah timur mungkin iya). Sampai sekarang saya masih dalam state, didn’t know how to properly behave on some situation. Saya kadang mudah sekali marah, atau segala jenis baper lainnya, kadang saya menjustifikasi kelakuan saya dengan berkata, “normal lah orang marah” padahal tidak juga, tetap ada kaidahnya.
Hal lain yang sering saya sadari beberapa bulan belakangan ini adalah seberapa pluralnya lingkungan saya. Di masa SD saya punya lingkungan yang sangat homogen, sesuku, seagama, dan lain-lainnya. Pengalaman menarik ketika masa SD mengenai pluralitas terjadi ketika kelas saya mendapat murid pindahan, seorang kristen, menjadi seorang penganut tunggal di kelas saya, Weisman namanya (Semoga dia ditakdirkan bisa baca ini haha). Apa yang dialaminya? Dibully, percaya atau tidak—saya juga baru ingat akhir-akhir ini, ternyata bullying itu benar, ada di lingkungan bahkan saat SD—teman saya itu dibully oleh teman kelas lainnya, terlebih karena dia punya logat yang berbeda, tidak sepandai yang lain, dan tidak selucu yang lain (apakah saya ikut membully? Kemungkinan besar iya. Salahkah? Jelas). Selesai di situ? Ternyata tidak, sembari saya menulis ini, saya ingat lagi tentang teman yang lain, seorang pindahan, dari Jawa yang juga sama dibully oleh beberapa teman kelas lain karena kenapa? Jujur saya lupa karena kenapa.
Beranjak ke SMP, saya punya teman yang beda ras, teman chinese pertama saya, hingga sekarang sudah kuliah masih jadi teman dekat. Saya juga ketemu lebih banyak teman yang beda agama, dari Katolik, Buddha, Hindu dan bahkan yang hanya kepercayaan saja. Menarik. Menariknya lagi, saya pernah menerapkan stereotype ke teman saya, dan menganggap dia muslim, hanya karena ide saya tentang wajah seorang muslim, tidak logis memang.
Beranjak ke SMA, lalu kuliah, tipe orang makin banyak. Proses belajar makin perlu, perlu cepat, perlu tepat.
Di tahun pertama, saya berusaha menyesuaikan diri, bisa dikata saya culture-shock. Gaya hidup anak SMA, terlebih anak SMA yang berantakan, tidak terjadwal, sering bolos, belajar di kelas tidak serius, belajar untuk ujian tidak serius, semi-soliter. Alhasil, ip awal anjlok, malu iya, sudah belajar? Jelas.
Di semester 2, mungkin tidak banyak berubah jauh, ip saya meningkat meski tidak sesuai ekspektasi orang dekat apalagi diri sendiri, sadar sebenarnya kalau kurang belajar dan banyak bolos, tapi ya telat sadarnya.
Semester 3 nilai mulai membaik, mulai ngebentuk lingkaran pertemanan, dari awal masuk sebenarnya, tapi yang ini punya objektif yang lebih jelas dan bukan sekedar teman buat main. Banyak hal menarik dan belajar yang lebih menarik lagi ketika dilingkupi lingkaran pertemanan.
Semester 4, lebih menarik lagi, ada hal yang berubah drastis—yang tidak bisa disebut dan jelaskan di sini—yang somehow buat nilai jadi lebih baik.
Semakin ke sini, memasuki bulan-bulan pencarian KP (Kerja Praktik), kemudian TA dan Sidang, makin banyak yang harus dipelajari, di perkuliahan, di masyarakat. Masih banyak yang harus diimprove, masih banyak dan masih banyak.
Dari awal tulisan ini, belajar memang luas definisinya juga pemaknaannya, yang menjadi menyenangkan adalah interaksi yang secara tidak langsung diciptakan dari proses belajar.
“Tell me and I forget, teach me and I may remember, involve me and I learn.” –Benjamin Franklin
Yeah, kadang cara terbaik untuk mengerti itu adalah dengan ikut ke dalam, berinteraksi ke dalam sesuatu yang kita pelajari.
1 note · View note
dewi-absensi · 3 years ago
Text
Per 1 April 2022 PPN jadi 11%..
Tenang , Fingerspot harga tidak berubah
Yuk Order Sekarang tanpa perlu khawatir.
Dapatkan banyak keuntungan lainnya dengan pakai Fingerspot.
#april #maret #end #endmonth
Tumblr media
0 notes
earnpassivefund-blog · 4 years ago
Text
Pay yourself first
Tumblr media
Paying yourself first means that you should set aside money from each paycheck (as soon as you received it).
Rather then waiting to see is anything is left over to save at the end of the month.
Are you paying yourself first?🤔 Let me know in the comments!👇
.
@earnpassivefund
#money #payingyourselffirst #paycheck #save #endmonth #income #expense #invest #wealthy #EarnPassiveFund #earnpassivefund
0 notes
raphaelmwai · 3 years ago
Video
instagram
Stunning 2 bedroom apartment to let lower kabete,karura - elegantly done in a compound of 16 units only - very secure - 2 minutes drive to wester by pass and tarmac - water 24/7 - kids friendly - master ensuite - balcony - washing area - huge mdf wardrobes and cabinets - well lit - very clean and quiet environment - fibre internet available READY FOR OCCUPATION RENT KSHS 30K 1 DEPOSIT MORE DETAILS AND VIEWING KINDLY CALL 0726028077 #realestatenairobi #realtor #realestateagent #apartmentliving #nairobirentals #serene #gatedcommunity #home #planet #wednesdayvibes #endmonth #lastminute #househuntinginstyle #luxurylifestyle #luxuryrealestate #luxurylistings #affordablehousing (at Lower kabete) https://www.instagram.com/p/CTAHaVKozu5/?utm_medium=tumblr
0 notes
jaytherabbitofficial · 6 years ago
Photo
Tumblr media
วันนี้ไม่ลงไปกินข้าวที่เต๊นท์นะ งานเยอะมากค่ะ #ขยัน #endmonth #salarygirl#jaytherabbit
0 notes
wangwill66 · 6 years ago
Text
潔西卡辛普森
潔西卡辛普森
維基百科介紹:
潔西卡·安·辛普森(英語:Jessica Ann Simpson,1980年7月10日-)是一位美國流行音樂歌手與演員,好萊塢娛樂記者追逐的焦點,曾獲得過美國唱片業協會白金唱片認證[1],妹妹為知名流行搖滾歌手艾希莉·辛普森。
Quick facts: 出生, 職業 …
潔西卡·辛普森歌手出生1980年7月10日(38歲)
美國德克薩斯州阿比林職業歌手、詞曲創作人、演員、時尚設計師音樂類型流行音樂、流行舞曲、鄉村音樂出道地點 美國德克薩斯州達拉斯活躍年代1999年–現在唱片公司SONY MUSIC(1998—2009年)
Primary Wave Records(2010)網站http://www.jessicasimpson.com
Close
除了演藝事業外,副業讓她成功再創事業高峰,同名自創品牌 Jessica Simpson Collection靴子、高跟鞋、包包、行李箱、服飾配件、泳裝、牛仔褲等系列產品,成功打入時下年輕少女市場在2009年順利駐進梅西百貨設置專櫃,截至2011年銷售額突破10億美元[2]。女性香水也連續推出個人香水品牌Fancy、Fancy Love、Fancy Nights攻佔香水市場。
生平
潔西卡出生於美國德州達拉斯
作品
More information: 資料 …
資料《Sweet Kisses》天使之吻
推出日期:1999年11月23日
美國排行:25
美國銷量:二白金
全球銷量:4,000,000張
《Irresistible》神魂顛倒
推出日期:2001年6月5日
美國排行:6
美國銷量:金唱片
全球銷量:
《In This Skin》心靈深處
推出日期:2003年8月19日
美國排行:2
美國銷量:三白金
全球銷量:7,000,000張
《A Public Affair》大眾情人
推出日期:2006年8月26日
美國排行:5
美國銷量:金唱片
全球銷量:
《Do You Know》試著了解
推出日期:2008年9月9日
美國排行:4
美國鄉村榜排行:1
美國銷量:20萬+
全球銷量:
Close
混音或聖誕作品
More information: 資料 …
演出作品
電影
More information: 年份, 作品譯名…
年份作品譯名作品名稱備註2005年飆風天王The Dukes of Hazzard2006年愛上明星店員Employee of the Month2007年金髮明星夢Blonde Ambition2008年愛情大師The Love Guru天兵大明星Private Valentine: Blonde & Dangerous
Close
電視
More information: 年份, 作品譯名…
年份作品譯名作品名稱備註2002年-2003年70年代秀That '70s Show2003年-2005年新婚夫妻:尼克與潔西卡Newlyweds: Nick and Jessica2003年陰陽魔界The Twilight Zone2010年我家也有大明星Entourage客串
Close
參考文獻
More information: Tap to expand…
^ http://www.riaa.com/goldandplatinumdata.php?resultpage=1&table=SEARCH_RESULTS&action=&title=&artist=Jessica%20Simpson&format=&debutLP=&category=&sex=&releaseDate=&requestNo=&type=&level=&label=&company=&certificationDate=&awardDescription=&catalogNo=&aSex=&rec_id=&charField=&gold=&platinum=&multiPlat=&level2=&certDate=&album=&id=&after=&before=&startMonth=1&endMonth=1&startYear=1958&endYear=2010&sort=Artist&perPage=25
^ http://nymag.com/fashion/11/spring/71664/
Close
外部連結
Jessica Simpson's Official Website
Jessica Simpson's Collection Website
台灣新力唱片認證 潔西卡中文歌迷網站
0 notes