#SModel
July 9, 2026 at 4:55 AM
颜色练习,找了个合适的模特 ,,smodel
September 26, 2025 at 10:07 PM
he could 🐝 a smodel
February 23, 2026 at 7:54 PM
S-Model 1/72 Daimler Dingo Mk.Ia Scout Car by Mokanaman
#Smodel #72scale #dingocar #dingoscoutcar #afv #plamo #scalemodel #modelkit #plasticmodel
August 27, 2025 at 11:44 AM
MMS stands for Marge Mearning Smodel
January 30, 2026 at 5:11 PM
Plusieurs commentaires ont disparu de mon profil SModel dont les plus récents 🥲
January 7, 2026 at 12:13 AM
昨日、#ホビーランド に持っていった艦。
手前から
・雪風(ゴジラ-1.0仕様)
・響(ゴジラ-1.0仕様)
・ガンビア・ベイ(S-Model #ネイビーヤード 作例)
・天照(#蒼焔の艦隊 #ネイビーヤード 作例)

#ゴジラマイナスワン
#艦船
#艦船模型
#プラモデル
#SModel
August 14, 2024 at 2:34 AM
S-Model 1/72 Daimler Dingo Mk.Ia Scout Car model kit review
YouTube video by mokanaman
www.youtube.com
October 5, 2025 at 2:07 PM
There is a #crtc hearing this week on the definition of "canadian content".

Bell canada presentation: https://www.cpac.ca/crtc-hearings/episode/may-22-2025--bce-inc?id=fc808fc1-2a57-4ab2-9f12-77a40f0c32f2

Bell media whose core busines smodel is to relsell US content with SIMSUB preventing us […]
Original post on mstdn.ca
mstdn.ca
May 22, 2025 at 9:34 PM
Neighbor gave me this rod

https://www.flakefood.com/807540/neighbor-gave-me-this-rod/

Brand: Penn Date: Mid 2000’s Model Name: Slammer Model Number: SL1740C70CR Length: 7'0" (7 feet) Construction: 1pc (one-piece rod) Line Rating: 17–40 lb. Line Type: This is a conventional (casting) rod, …
Neighbor gave me this rod
Brand: PennDate: Mid 2000’sModel Name: SlammerModel Number: SL1740C70CRLength: 7'0' (7 feet)Construction: 1pc (one-piece rod)Line Rating: 17–40 lb. LineType: This is a conventional (casting) rod, designed for use with a conventional reel rather than a spinning reel.Is this thing still good to bring on a fishing charter? Will be going on my first one Dec 13th out of Dave’s Locker Newport Beach. Posted by Unhappy-Opposite-28
www.flakefood.com
December 2, 2025 at 6:09 AM
Das Land das du meinst nennt sich Niederlande, und sind das absolut schlechteste "Legalisierung"smodel das es gibt
November 6, 2023 at 4:22 PM
i mean....hiring low paid workers + then promoting them is definitely a busines smodel that relies on hiring cheap labor....admittedly its not relying on cheap labor after that if it promotes. em + pays them well.

i accept you've said it, i'm just curious what the underlying basis for it was...
May 14, 2025 at 7:04 PM
Resolved at constructor, but unresolved later
Problem solved: it was a bug at the `smodel` crate, specifically at the procedural macro's impl for `smodel!`. The constructor's `super()` generated code only at `new()`, but not at the constructor's real code. Fix: // If the type inherits another type: // // * At the constructor code, invoke `InheritedM::#ctor_init_name_id(&__cto1.0, ...super_arguments)`, // passing all `super(...)` arguments. let mut super_code = proc_macro2::TokenStream::new(); if let Some(inherited_m) = smtype.inherits() { let inherited_m_name = Ident::new(&inherited_m.name(), Span::call_site()); let super_arguments = node.map(|node| node.super_arguments.clone()).unwrap_or(Punctuated::new()); super_code.extend::<proc_macro2::TokenStream>(quote! { #inherited_m_name::#ctor_init_name_id(&self.0, #super_arguments); }.try_into().unwrap()); } // Define the the instance `#ctor_init_name_id` method, // containing everything but `super()` and structure initialization. let statements = node.map(|node| node.statements.clone()).unwrap_or(vec![]); smtype.method_output().borrow_mut().extend(quote! { #(#attr)* fn #ctor_init_name_id #(#type_params)*(&self, #input) #where_clause { #super_code #(#statements)* } }); P.S.: the comments are a bit outdated in the above code, might update it later
users.rust-lang.org
January 23, 2025 at 1:17 PM
Resolved at constructor, but unresolved later
I'm using smodel to designate semantic entities in my compiler, but I found a weird bug. I'm testing for compiler bugs with one simple ActionScript 3 source that doesn't contain any sort of code (sdk/demo/builtins/src/library.as at master · whackengine/sdk · GitHub). From factory: pub fn create_type_constant(&self, referenced_type: &Entity) -> Result<Entity, DeferError> { let r = TypeConstant::new(&self.0.arena, referenced_type, &self.0.class_type().defer()?); // test bug if r.static_type(self.0).is::<UnresolvedEntity>() { println!("here"); } Ok(r.into()) } Prints here, here, here, here, here, ... > Note that static_type(host) retrieves the type of a value, variable slot or virtual slot. Then here in `Value`: pub struct Value: Entity { let ref m_static_type: Option<Entity> = None; pub(crate) fn Value(static_type: &Entity) { super(); self.set_m_static_type(Some(static_type.clone())); if self.m_static_type().is_none() { println!("Here"); } } pub override fn static_type(&self, host: &Database) -> Entity { // i have tried here `self.m_static_type().is_none()` // and it printed yes! Weird, right? self.m_static_type().unwrap_or(host.unresolved_entity()) } pub override fn set_static_type(&self, value: Entity) { self.set_m_static_type(Some(value)); } #[inheritdoc] pub override fn property_static_type(&self, host: &Database) -> Entity { self.static_type(host) } } Does not print any sort of "here", "here", "here"... Here's `TypeConstant`: pub struct TypeConstant: Constant { let ref m_type: Option<Entity> = None; pub(crate) fn TypeConstant(referenced_type: &Entity, static_type: &Entity) { super(static_type); self.set_m_type(Some(referenced_type.clone())); } pub override fn referenced_type(&self) -> Entity { self.m_type().unwrap() } pub override fn clone_constant(&self, host: &Database) -> Entity { host.factory().create_type_constant_with_static_type(&self.referenced_type(), &self.static_type(host)) } } Here's `Constant`: pub struct Constant: Value { pub(crate) fn Constant(static_type: &Entity) { super(static_type); } } Here's the semantic model: sdk/crates/mxmlsemantics/src/semantics at master · whackengine/sdk · GitHub # How to play with it At the Whack SDK workspace, run: cargo run -- check --path demo --builtins demo/builtins It'll check the sources at the `demo` directory, using the `demo/builtins` package as the built-in Whack library (which is a strip of the whacklib without code).
users.rust-lang.org
January 22, 2025 at 1:24 PM
Parts 1-2/2 — EFTA02018304.jpg
#epsteinweb #efta02018304
https://epsteinweb.org
Available in the iOS app store now!
https://apps.apple.com/us/app/epstein-web/id6758880661
March 19, 2026 at 4:29 AM
斜め後からはこんな感じ。
ニューキットレビューだったので、エッチングパーツとかは全然使っていません。
#艦船模型
#プラモデル
#海軍
#アメリカ海軍
#プラモ
#艦船
#SModel
August 12, 2024 at 7:22 AM
S-Modelの1/700ガンビアベイですが、ホビーランドに入荷予定との事です。
ただ、入荷時期、価格はまだ分からないとの事。
値段がどのぐらいになるか、若干不安ですが、日本に入荷されるとの事なので、まずはめでたいと思いますか。
#艦船模型
#プラモデル
#プラモ
#艦船
#米海軍
#SModel
June 24, 2024 at 11:39 AM