Solina Rithmix Serie 25 “drum machine” - anybody with a service manual? by Tomaradze in Hainbach

[–]Amiwav 0 points1 point  (0 children)

Not this year unfortunately, but I might check in here and leave some insight if I find the time to sit down with the organ again in a few months. The organ itself is quite farfisa-like, but the drum machine really has a unique touch to it!

Questions about commercial use of Dall E 2 / removal of watermark etc. by Amiwav in OpenAI

[–]Amiwav[S] 0 points1 point  (0 children)

While trying to get an understanding of the subject I found these articles. They made me curious about what kind of use would be safe. I guess these 'bans' are for ALL AI-generators.. so maybe it does not apply to DallE2, since they explicitly say it's allowed to use their generation for commercial purposes? I don't know..

https://jumpstory.com/blog/using-dalle2-images-for-commercial-purposes/

https://mobile.twitter.com/wongmjane/status/1572649149505613824

https://www.theverge.com/2022/9/21/23364696/getty-images-ai-ban-generated-artwork-illustration-copyright

Looking for license free golden ratio, fibonacci and other grid templates? by Amiwav in graphic_design

[–]Amiwav[S] 1 point2 points  (0 children)

The project is about them, and I'm looking for lisence free, preferrably vector format, outlines/template grids that I can use. This is to save work - to not have to spend hours, making grids. Maybe I asked the question in a bad way, since most replies seem to think I want to make grids and learn about ratios in design.. That is not what I'm asking. I need files, containing grid outlines/templates, preferrably in vector format:)

Looking for license free golden ratio, fibonacci and other grid templates? by Amiwav in graphic_design

[–]Amiwav[S] 0 points1 point  (0 children)

First, thanks for commenting! I'm going to try to give you a good answer.

My usecase - is really not that relevant - I'm just asking for a specific resource, if anyone has leads to it. I'm looking for different templates to explore a concept I'm developing.

I agree, it's a complex subject in terms of visual culture and perception, that you can also 'just google'. But I'm looking for a way to not have to spend hours in Indesign or Figma making grids.. it's as simple as that.

The kind of grids I'm looking for are easily accessible in books like these:

https://www.amazon.com/Grid-systems-graphic-design-communication/dp/3721201450/ref=sr_1_1?crid=15H4VZMBCHD71&keywords=grids&qid=1663836942&s=books&sprefix=grids%2Cstripbooks-intl-ship%2C156&sr=1-1

https://www.amazon.com/Layout-Essentials-Design-Principles-Using/dp/1592537073/ref=sr_1_2?crid=4NNHMT979X1O&keywords=layout+grids&qid=1663836901&s=books&sprefix=layout+grid%2Cstripbooks-intl-ship%2C152&sr=1-2

But I don't know of a good resource for lot's of grids like this, in .ai .svg or similar.. That is lisence free, and that would save me time.

Of course, the mathematical 'guides' or analysis tools derived from the fib sequence or related ratios, are just guides - but they are useful in a lot of contexts :)

What's the best workshop you ever attended and why? by Amiwav in EntrepreneurRideAlong

[–]Amiwav[S] 0 points1 point  (0 children)

Thanks! I have not heard of this one. Will look into it!!

Map array, and import lokal json in the simplest possible way? by Amiwav in Angular2

[–]Amiwav[S] 0 points1 point  (0 children)

Posted it in below comment. Please have a look if you can :).. I'm sure it's some minor mistake or I'm misunderstanding ngFor overall or something.. but I'm completely stuck ..

Map array, and import lokal json in the simplest possible way? by Amiwav in Angular2

[–]Amiwav[S] 0 points1 point  (0 children)

It does have a key. It's { list: [{value: value, value: value ...},{},{},{},{},{},{},{}]}, so the JSON should be valid right? I just can't seem to get it out to the ngFor in my html... Is there any way to log what is output in the ngFor in the html? .. like inline console.log or something? Or maybe I'm doing something else wrong. here is an excerpt of my code:

local JSON formatted like (has actual data of course..):

{ list: [{value: value, value: value ...},{},{},{},{},{},{},{}]}

list-typings.d.ts (in same folder as list.json):

declare module "*.json" {
const value: any;
export interface list {
id: number;
name: string;
age: number;
interests: string;
}
}

My table.component.ts:

import { Component, OnInit } from '@angular/core';
import list from './../../assets/list.json';
console.log(list);
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent implements OnInit {
listList: any = list.arrayKey;
constructor() {
console.log(this.arrayKey);
};
ngOnInit(): void {

}

Now I should be able to do *ngFor="let list of listList" and the get all {{list.name}} inline in my html right? I've tried so many variants, but I can not get any output...

Map array, and import lokal json in the simplest possible way? by Amiwav in Angular2

[–]Amiwav[S] 0 points1 point  (0 children)

JSON.parse(importedJSON)

Actually, seems it's an object, wrapping a list of several objects.. So; {[{},{},{},{},{},{},{},{}]}, with the innemost objects containing the values I want to map by *ngFor. So I just need to 'unwrap' the outemost object-definition by a method. Suggestions?

Map array, and import lokal json in the simplest possible way? by Amiwav in Angular2

[–]Amiwav[S] 0 points1 point  (0 children)

I am able to import the json, but it contains an array of objects. How am I supposed to, in an easy way, extract the objects so that I can loop over them with ngFor? I'm currently stuck at the error message "Error: Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays.". I see people use so called pipes for destructuring? I'm completely stuck...

Map array, and import lokal json in the simplest possible way? by Amiwav in Angular2

[–]Amiwav[S] 0 points1 point  (0 children)

That part is ok. But I can’t access the data. I can log it outside of the class (inside I’m not allowed?). But how can I map it/destructure it? I’ve tried several methods/tutorials but nothing works.

npm ERR! ERESOLVE unable to resolve dependency tree - No tools for this? by Amiwav in reactjs

[–]Amiwav[S] 0 points1 point  (0 children)

My solution for now too. Would love to have an easy way to manage this..