Tumgik
#hello2
c0tards--s0luti0n · 1 year
Text
Always morally correct to send me art requests you wanna send me situations to put those guys in sooooo bad
2 notes · View notes
bitterlyromantic · 1 year
Text
so what if i think his lips are strawberry sweet. what am i supposed to do about it, kiss him?
0 notes
sillyynoise · 9 months
Text
Tumblr media Tumblr media
⟨⟨Click on the image to increase the quality kakaj ⟩⟩
HELLO2 AGAIN! I made them a Christmas version because I love them :D
(( TSC didn't know what clothes to wear so he picked out his New Year's Eve clothes. ))
75 notes · View notes
yamada-ryo · 1 year
Note
hi1
hello2
11 notes · View notes
waybackwanderer · 8 months
Video
undefined
tumblr
hello2.wav Sep 1996 Archived Media File 📀 🔊
6 notes · View notes
abcthv9597 · 4 months
Text
230518 - Yoongi on Weverse Live (2)
1 note · View note
gima326 · 4 months
Text
Proxy の使いでを、手を動かして考える その2
改変してみる。 引数持ちのメソッドを「拡張」してみる。 ・・・ふむふむ。 proxyとreifyの違い [ https://scrapbox.io/ayato-p/proxy%E3%81%A8reify%E3%81%AE%E9%81%95%E3%81%84 ] // java ===================== package demo.example;
public class greeting {  public String name;  public greeting () { this.name = “gima326”; }  public greeting (String name){ this.name = name; }  public String hello (){ return “Hi-sai, ” + this.name + “!”; }  public String hello2 (String name){ return “Cha-bira-sai, ” + name + “!”; } } // clojure ===================== (def hello-extndr2  (proxy [greeting] []
  ;; fnc1   (hello []    (do     ;; extended part     (println (format "1: Sent a Greeting to %s." (.name this)))
    ;; original part     (println (proxy-super hello))))   ;; fnc2   (hello2 [name-added]    (do     ;; extended part     (println (format "2: Sent a Greeting to %s." (.name this)))
    ;; original part     (println (proxy-super hello2 name-added)))) )) //============================ user=> (.hello (greeting.)) "Hi-sai, gima326!" user=> (.hello (greeting. "aaa")) "Hi-sai, aaa!" user=> (.hello2 (greeting. "aaa") "bbb") "Cha-bira-sai, bbb!" user=> (.hello hello-extndr2) 1: Sent a Greeting to gima326. Hi-sai, gima326! nil user=> (.hello2 hello-extndr2 "bbb") 2: Sent a Greeting to gima326. Cha-bira-sai, bbb! nil //============================ user=> (ancestors (class hello-extndr)) {demo.example.greeting java.lang.Object clojure.lang.IProxy} user=> (ancestors (class hello-extndr2)) demo.example.greeting java.lang.Object clojure.lang.IProxy}
0 notes
jbvvgv · 9 months
Text
HELLO2 THE KITCHEN IS MINE UNTILL I GET MY BEAST!!! OK!!!!
🧐🔒
0 notes
codehunter · 1 year
Text
JavaScript loop through JSON array?
I am trying to loop through the following json array:
{ "id": "1", "msg": "hi", "tid": "2013-05-05 23:35", "fromWho": "[email protected]"}, { "id": "2", "msg": "there", "tid": "2013-05-05 23:45", "fromWho": "[email protected]"}
And have tried the following
for (var key in data) { if (data.hasOwnProperty(key)) { console.log(data[key].id); }}
But for some reason I'm only getting the first part, id 1 values.
Any ideas?
https://codehunter.cc/a/javascript/javascript-loop-through-json-array
0 notes
kurikive · 2 years
Note
ur like my fav person on this app onggg
HELLO2?2!!#;2 giggling rn WHAT DO U MEAANNNN
1 note · View note
dalishfrog · 2 years
Text
Pinned Post
What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
0 notes
yukeycardtsunoda · 2 years
Note
hello2 :3c 🌼
hiiii !
Tumblr media Tumblr media Tumblr media Tumblr media
5 notes · View notes
amakumos · 3 years
Text
Tumblr media
IM LTRLY SO IN LOVE WITH YOU HELLO2??2)3!3 HE LOOKS SO CUTE IM GONNA START SOBBING . Oh lord
8 notes · View notes
goward-blog1 · 3 years
Text
hello1
hello2
1 note · View note
gima326 · 4 months
Text
Proxy の使いでを、手を動かして考える
・・・うーん、まだよく分からないけれど。 proxyとreifyの違い [ https://scrapbox.io/ayato-p/proxy%E3%81%A8reify%E3%81%AE%E9%81%95%E3%81%84 ] // java ===================== package demo.example;
public class greeting {  public String name;  public greeting () { this.name = "gima326"; }  public greeting (String name){ this.name = name; }  public String hello (){ return "Hi-sai, " + this.name + "!"; }  public String hello2 (){ return "Cha-bira-sai, " + this.name + "!"; } } // clojure ===================== (import demo.example.greeting) (def hello-extndr  (proxy [greeting] []   (hello []    (do     ;; extended part     (println (format "Sent a Greeting to %s." (.name this)))
    ;; original part     (println (proxy-super hello))     )))) //============================ user=> (.hello (greeting. )) "Hi-sai, gima326!" user=> (.hello (greeting. "aaa")) "Hi-sai, aaa!" user=> (.hello2 (greeting. )) "Cha-bira-sai, gima326!" user=> (.hello hello-extndr) Sent a Greeting to gima326. Hi-sai, gima326! nil user=> (.hello2 hello-extndr) "Cha-bira-sai, gima326!" //============================ user=> (macroexpand-1  '(proxy [greeting] []    (hello [] (format "Sent a Greeting to %s." (.name this)))))
#=> #=> (clojure.core/let [p__7192__auto__           (new user.proxy$demo.example.greeting$ff19274a)]    (clojure.core/init-proxy     p__7192__auto__     {"hello"      (clojure.core/fn       ([this]       (format "Sent a Greeting to %s." (.name this))))     })     p__7192__auto__)
0 notes
Text
Tumblr media
Going thru February with this mindset. #Hello2/12💯
1 note · View note