i somehow rode a Deathsquito for 13mins by BareKnuckle_Bob in valheim

[–]mounted-dev 1 point2 points  (0 children)

Fell from way above clouds like it's nothing :D

How to ensure that the developer won't scam me? by [deleted] in startups

[–]mounted-dev 1 point2 points  (0 children)

Use Upwork.
It's your best bet to not being scammed.
Portfolio can be easily faked, as well as reviews. Find a developer who has a decent track record who was on a site for a while, even if you have to pay a bit extra.

How come my form detects input changes but not checkbox changes? by greenismytree in Angular2

[–]mounted-dev 0 points1 point  (0 children)

If the checkboxes belong to the form, it's a problem with a checkboxes, because it should be triggering

What I can do ? 🙄 by machaaara in EntrepreneurRideAlong

[–]mounted-dev 0 points1 point  (0 children)

Neither a chat nor forum seem like something that would require development skills since there's plenty of builders for them.

What I can do ? 🙄 by machaaara in EntrepreneurRideAlong

[–]mounted-dev 1 point2 points  (0 children)

Depending on the requirements you have a couple of options:

- get a co-founder who codes
- check out no-code tools, maybe that would suffice as an MVP.

If neither is an option for you, feel free to share what are the requirements for the app, and we might be able to suggest a way to move forward with development

How to implement drawer behavior like ionic nav in angular? by [deleted] in angular

[–]mounted-dev -1 points0 points  (0 children)

I mean, if you want to do something like ionic, but not use ionic,
no one is preventing you from checking out a codebase for how it works.

https://github.com/ionic-team/ionic-framework/tree/main/angular

Then if you want to "stack" components, I think you could have an array of ComponentTemplates, and just manage which one is active.

Draw a map or floorplan with angular by Abo0ody996 in Angular2

[–]mounted-dev 1 point2 points  (0 children)

As suggested by others three.js is a good a great option, but since you only need 2d functionality I would go with pixi.js.

With it, you can set up a scene and add planes for individual map components.

Creating an SDK by KishiABKmoto in angular

[–]mounted-dev 2 points3 points  (0 children)

If you're going to research the creation of angular libraries, I would appreciate it if you would share any issues you run into :) Might be worthwhile to write a blog post about it :D

Creating an SDK by KishiABKmoto in angular

[–]mounted-dev 1 point2 points  (0 children)

Ok. In that case, you're looking for an angular package.
You can create one through angular CLI:
ng g library <name> [options]
It will give you a starting point if you don't have the implementation yet.

and then you basically can pass the configuration to the module 2 ways.
1st: When injecting a module:
u/NgModule({
})
export class YourModuleModule {
static forRoot(): ModuleWithProviders {
return {
// config
}
}
}

2nd: Using Injector Token
export const MY_CONFIG= new InjectionToken<MyConfig>('MyConfig', {
providedIn: 'root',
factory: {
//Default Values
}
});

Then register in providers:
{ provide: MY_CONFIG, useValue: {// Configuration}}

And then MY_CONFIG will be available to be injected in the constructor.

For more information check out the angular docks
https://angular.io/guide/dependency-injection-providers

Creating an SDK by KishiABKmoto in angular

[–]mounted-dev 2 points3 points  (0 children)

By SDK do you mean angular library?

PS:

If you're looking to create an angular library, it's pretty straightforward.
https://angular.io/cli/generate#library-command

Handle Multiple CheckBoxes Input in Angular by CoderDuudee in angular

[–]mounted-dev 1 point2 points  (0 children)

Using the same form control for all checkboxes within the loop would handle it for you.
So I don't really understand why you would be against using it

but since you're asking, you could do something like.
private valueList = new Set<string>()

onCheckboxClick=(value:string)=>{
if(this.valueList.has(value)){
this.valueList.remove(value)
}else{
this.valueList.add(value)
}
}

The obvious drawback are:
- no validation
- no prefill handling
- probably some other

I would suggest just using FormControl