What worked for me was removing the:
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
It'd been deprecated and it doesn't match the version of <PackageReference Include="AutoMapper" Version="14.0.0" />
installed.
I have looked on F.Mysir answer and inside alpha() function, Google set clip=true
. I have replaced Modifier.alpha(0.99f)
with Modifier.clipToBounds()
and it looks like the issue was fixed.
A possible workaround consists in defining a DependencyLoader
class in a separate file, exposing a method to dynamically load any source file, then adding the DependencyLoader
file to the externals collection, so that it's not bundled. Then you can just load your dynamic dependencies through DependencyLoader
.
In a computing context, "register state" refers to the current values stored in the processor's registers at a specific point in time. These registers are small, high-speed storage locations within the CPU used to hold data and instructions that the processor is actively using.
CALL CDS_EXTRACT_CHECK_ROWCOUNT(:STAGE_DATABASE, :STAGE_SCHEMA, :STAGE_TABLE) INTO :rowcount ;
MimeMessage with the above provided code from OP takes a shortcut and only works on plain text. Usually modern E-Mail providers use plain html or a mix of html and txt. To work around one way is to create 2 variables which later get used to display one holding MimeKit.Text.TextFormat.Text
and the other with an .Html ending. This way you can catch both if one fails
Place your anti-forgery middleware after the UseStatusCodePagesWithReExecute and it will work (tested on .Net 9) :
app.UseStatusCodePagesWithReExecute("/404");
app.UseAntiforgery();
Appearently answer was pretty simple. Aside from HTTP solutions, there was an update to how clickonce operates at some point.
Sincere thanks to this pull request: https://github.com/dotnet/deployment-tools/pull/208
This basically solves all our problems, although the risky part that if you launch your application without ClickOnce tool (through vscode or whatever), these strings will be returned null. So testing was impossible, but these values are returned on live applications.
string updatedVersionStr = Environment.GetEnvironmentVariable("ClickOnce_UpdatedVersion");
string currentVersionStr = Environment.GetEnvironmentVariable("ClickOnce_CurrentVersion");
if (!string.IsNullOrEmpty(updatedVersionStr) && !string.IsNullOrEmpty(currentVersionStr))
{
Version updatedVersion;
Version currentVersion;
if (Version.TryParse(updatedVersionStr, out updatedVersion) &&
Version.TryParse(currentVersionStr, out currentVersion))
{
if (updatedVersion > currentVersion)
{
_logger.AddLog($"New version available. Current:{currentVersion}, New:{updatedVersion}");
Application.Restart();
}
}
else
{
//Error checking, other stuff, catches, whatever.
}
}
Thank you all.
Resharper extension caused all this mess. Uninstalled and all works fine
this is custom rom, so that there is not any android official api to change the feature.
serveral hours later, I got the solution :
run adb shell settings list system
, get all setting keys and values;
change 'Enable true hibernation', and run the same command, compare values;
get the feature key is 'systemsleep_open';
then run code in app activity
try {
Runtime.getRuntime().exec("settings put system systemsleep_open 1")
} catch (e: Exception) {
e.printStackTrace()
}
I faced same "challenge". Found how to download specific version. There is XML list of all versions (and their URL path): https://s3-us-west-2.amazonaws.com/dynamodb-local
I needed version 2.6.1. I opened https://hub.docker.com/r/amazon/dynamodb-local/tags and saw that 2.6.1 was published 2025-04-14. From this list I found the item:
<Key>v2.x/dynamodb_local_2025-04-14.tar.gz</Key>
and used that key in url: https://d1ni2b6xgvw0s0.cloudfront.net/v2.x/dynamodb_local_2025-04-14.tar.gz
I figured it out. I added ui.html
to "resources"
in "web_accessible_resources"
in manifest.json, and used (await fetch(chrome.runtime.getURL("ui.html"))).text()
to get the HTML and store it in a variable in content.js
to later inject. Thanks for trying to help. :)
Should be working, you have two pointers and you can shift the second one by 'n'.
The size just needs to be correct.
The simplest working solution was pointed out by @iRon and it is to set the Region
> Administrative
> Language for non-Unicode programs
> Change system locale
> Beta: Use Unicode UTF-8 for worldwide language support
as described in https://stackoverflow.com/a/57134096/1701026.
I am struggling with the same problem.
I threw together an example.
https://github.com/sandra-markerud/keycloak-sample
Start keycloak with a docker-compose file. Keycloak contains two realms, "external" and "internal".
I cannot make it work.
Any help would be appreciated
Have you tried this? https://techcommunity.microsoft.com/blog/adforpostgresql/online-migration-to-postgresql-flexible-server-on-azure-from-single-server/4086503.
Azureโs online migration service for PostgreSQL Flexible Server, which supports continuous replication and a controlled cutover for minimal downtime and data consistency. Plan and test the migration, monitor replication, and ensure all writes are stopped before final cutover to achieve near-zero downtime
<audio controls style="width: 100%; max-width: 600px; margin-top: 10px;">
<source src="sandbox:/mnt/data/Tal%20Como%20O%20Sol_MASTERIZADA.mp3" type="audio/mpeg">
Seu navegador nรฃo suporta este player de รกudio.
</audio>
Quero ouvir isso aqui
Install the expect
package, which comes with the unbuffer
command. And disable the pager by overwriting PAGER
PAGER='cat' unbuffer git log | head
This filters through the complete output (And retains colors as well)
is it possible to use Service Plan Azure on Linux with Azure Logic Apps ?
@Marleen is correct. You have to many parameters in your noSpecialChars
function. I have a similar function in my CI4 app that looks like this:
public function alpha_numeric_punct_german(string $str, ?string &$error = null)
{
// M = Math_Symbol, P = Punctuation, L = Latin
if ((bool) preg_match('/^[^\p{M}\p{P}\p{L}0-9 ~!#$โฌ%\&\*\-\โ_+=|:.,โโ"`ยด\']+$/ium', $str)) {
$error = 'Contains illegal characters';
return false;
}
return true;
}
The $error
argument is optional. You only have to pass string $fields
and array $data
if you want to pass additional data to your validation rule like for example in in_list[2,5]
or valid_date[d.m.Y]
.
The problem here is that the attribute author
in Post
differes from the one in PostWithNull
, in Post
its type is Author
in PostWithNull
its type is Author | null
.
To solve your issue you could change the return type of your function with:
function getPostById(id: string): PostWithNull | null {
Windows these days also automatically blocks applications from modifying directories that haven't been explicitly allowed. If you go to Smart App Control and select add app, recently blocked apps then you can add that app to the allow list.
Yes its correct. If your repo name is exactly same as your username, site will be live at "<username>.github.io", but if your repo name is different than username, you must provide repo name next to your domain i.e "https://<user_name>.github.io/<repo_name>".
The problem is not the Data API Builder, but the database it connects to.
For a Microsoft SQL Server you can specify the connection timeout directly in the connection string
Server=tcp:{server-address},{port};Initial Catalog={database-name};{authentication};Connection Timeout=30;
I Think there no solution for this , try to contact whatsApp support team
Can You tell me more about this ? When i run spark-submit --packages "org.apache.spark:spark-sql-kafka-0-10_2.12:3.5.6" test.py
It threw the errors of KafkaConfigUpdater.
The time complexity of the function
is O(n) where N is the size of the input list segment
If you are generating your project from Spring Initializer then definatelyt you have chosen the maven. In that case, you just delete your m2 repository and download all dependencies again.
At Nest Thermostats Dubai, we want our customers to enjoy smart temperature control without hassle. The Google Nest Thermostat has built-in user and rate limits to ensure smooth and secure operation. It allows multiple users via the Google Home app, giving family members shared access. However, to protect performance, Google sets limits on the number of remote commands per hour or day. These limits prevent overloading the system and keep your home running efficiently. If limits are reached, simply wait and try again. At Nest Thermostats Dubai, we ensure easy setup, expert support, and smart home comfort for all.
gf opens the file in a new buffer.
:b# can be used to toggle between the last two buffer. Keybinding it to something like Shift+space can help quickly jump between two files.
On the other hand, if you have followed a chain of gf calls to go though multiple files, ctrl - O [and ctrl - I to reverse it] might be more useful.
Right click on search text -> Click -> Activity bar position -> Default
Activity bar position -> Default
After running the test, the results are displayed with a unique URL.
Right-click on the page and select "Copy" or "Copy Link" (or similar, depending on your browser) to copy this URL.
You can then paste this URL into an email, message, or document to share the results.
Also, about saving resuls, check here: https://github.com/openspeedtest/Speed-Test/issues/110
Go to the line you want to edit then control + i
Or
to select the entire page, command + a then control + i
data-bloks-name="bk.components.Flexbox" class="wbloks_1" style="pointer-events: auto; flex-shrink: 0; margin-right: 12px; flex-direction: row; cursor: pointer; -webkit-tap-highlight-color: transparent;" tabindex="0" role="button" aria-label=
Yes, it's very common (and generally recommended) for mobile apps and websites to share the same backend API and database. This is a standard practice in modern application architecture.
Consistency: All clients work with the same data and business logic
Efficiency: You maintain and update one codebase instead of multiple
Synchronization: Changes are immediately available across all platforms
Cost-effective: Less infrastructure to maintain
Your plan to use:
Single Node.js/Express backend
Same API for both mobile and web
Shared MongoDB database
This is exactly how most successful applications are built (think Twitter, Facebook, etc.).
You might separate backends only in specific cases:
If the mobile and web apps have completely different functionality
If you need radically different scaling for each platform
If you have specialized database requirements for one platform
For legacy integration reasons
Design a clean RESTful or GraphQL API that serves both platforms
Implement proper authentication (JWT, OAuth) that works across platforms
Use API versioning to manage changes without breaking clients
Consider a BFF (Backend For Frontend) pattern if clients need very different data formats
A shared backend doesn't inherently create scaling or security issues if:
Your API is well-designed
You implement proper rate limiting
You use caching where appropriate
You follow security best practices
Your approach is correct - proceed with confidence! This architecture will serve you well through initial development and can scale as your user base grows.
Check /etc/apt/sources.list.d/pgdg.list
file and find out that what available and do chnaged according to ithttps://apt.postgresql.org/pub/repos/apt/dists/
use vscodium: Opensource variant of VSCODE
The functionalityof multiline find and replace is buildin.
Accessing the internal attributes of <gmp-place-autocomplete>
is currently not possible due to its closed shadow DOM. A Feature Request has been filed with Google regarding this issue. You can track its progress, star the issue for updates, and add comments by following this link: https://issuetracker.google.com/issues/399061524.
I solve this issue by -
1 . open Terminal and navigate to your project folder.
2 . pod cache clean --all
3 . pod deintegrate
4 . rm -rf Podfile.lock Pods
5 . pod install --repo-update
6. Also delete all Derived Data . Xcode -> Setting -> Locations -> DerivedData
7. Restart Your system.
8. Run with "Rosetta" Simulator.
Enable Audience Targeting:
Target the Content:
In a web part like Highlighted Content, turn on Audience Targeting under the web part settings.
Assign one or more Microsoft 365 groups to a page or content item.
Please change your code to this:
@Query("select i from Brand i where i.name like %:name% and i.reviewStage = :stage")
Page<Brand> getLikeName(@Param("name") String name, @Param("stage") ReviewStage stage, Pageable pageable);
or this one:
@Query(value = "select * from brand i where i.name like CONCAT('%', ?1, '%') and i.review_stage = ?2", nativeQuery = true)
List<Brand> getLikeName(String name, String reviewStage, Pageable pageable);
You should use Wisper.cpp and not Python wisper
Bcoz if you are trying to work in Mobile devices Wisper Python wont work
We are currently implementing in my DD-DigitalDiary project
Last comment ofย Remy Lebeau for previous answer worked to me - "don't declare the ifstream
as a global variable". I just made a few local variables like
ofstream flog;
Hint: Maintain a backup of your project either locally or as repository before making changes. Is simple then to revert or compare, Nb I use BeyondCompare for comparing code versions locally.
I also made a module called jcon
thanks for the update, that makes more sense now. Just to check, when you say the vessel moves to the seized resource unit, do you mean it goes to the home location of the berth (like BDrop1, BDrop2, etc.) that's linked to the resource?
Also, does the Seize block automatically make the vessel wait if all the berths are full, or did you have to add anything extra for that? Just trying to set up something similar and want to make sure Iโm on the right track.
give your code about when and where to run AppLinkData.fetchDeferredAppLinkData
I found the file where throws the error (No existing trace found
).
After I installed `@openai/agents-core` package, for I want to try some logic, everything start working and the error gone away.
I don't know why but all I did is "I installed `@openai/agents-core` package".
The problem was solved. thank you.
Your styles aren't loading because Next.js thinks theyโre not being used and skips them.
Just import your CSS file directly in your app, like in layout.tsx
:
import 'component-library/dist/main.css';
I encountered the same issue on my DB,
Found the solution to trigger the pruning is doing the conversion using ::timestamp without time zone
or with no conversion at all, at planning time postgres is not recognizing the index nor the pruning with different data type
Same issue was happening to me.
I got it fixed by updating macOS, updating Xcode to latest versions,
and re-running the following:
flutter clean
rm -rf ios/Pods ios/Podfile.lock ios/.symlinks ios/Flutter/ephemeral
cd ios && pod install --repo-update && cd ..
Failed to load System.Private.CoreLib.dll (error code 0x80070002) Path: C:\Program Files\dotnet\shared\Microsoft.NETCore.App\8.0.14\System.Private.CoreLib.dll Error message: Could not load file or assembly 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\8.0.14\System.Private.CoreLib.dll'. The system cannot find the file specified. (0x80070002) Failed to create CoreCLR, HRESULT: 0x80070002
Deleted LaunchScreen from the project (Remove reference) and add it back in solved it. Restarting device or reinstalling didn't work.
To do this for multiple files use the command:
for file in *.tif; do
tesseract "$file" "${file%.png}" --psm 6 lstm.train
done
This will generate all the lstm files
Use api method from postman
Endpoint take from api_server of your clearml config. For example
https://your_url:443/queues.update
And write body request
{
"name": "default",
"system_tags": ["default"]
}
Do not forget Authorize (create Bearer token, from method auth.login)
Literally wasted 12 hrs in others ai platform.just randomly googled it & here problem solved๐ซฐ.stackOverflow wont die
In the .env file try this way
MONGODB_URI = '<your URL'
....
It work for me
I am having the same problem when using stumpwm on arch-linux
I have eDP (laptop) and monitor (HDMI-A-0). I prefer having the monitor to left-of laptop, and things were working fine until yesterday when I connected a projector and somehow things got messed up and I'm unable to recover now. Now, when I login to stumpwm, the default mode is monitor to right-of laptop, and things work fine. But when I move the monitor to left-of laptop,
xrandr shows correct values set. even the background image takes the full screen
however, the windows only take up partial screen on monitor. and the windows on the laptop overflow onto the monitor
I've tried, arandr, but get the same results
You can check the mapbox option, have free license quota based on number of users or API usage, more info in their web:
I think the "clunky, non-functional approach" is the best you currently have available. It's clear and to the point.
It depends.
Generally speaking, your learning rate is independent of batch size if you divide loss by batch size, otherwise you have to adjust lr when batch size changes.
You can extract each frame from the input video and identify white background pixels using color thresholding in the HSV color space. and then create an alpha channel is by marking the white regions as fully transparent and the rest as opaque. Save these processed frames are PNG images with RGBA channels. Finally, encode the sequence of transparent PNG frames into a .webm video using the VP9 codec with specific FFmpeg settings that preserve transparency, resulting in a video where the original white background has been removed and replaced with true transparency. You can refer to: https://colab.research.google.com/drive/1Jz39wRN4hiJbvGsrOTFYP4uymjhOlJgF?usp=sharing
Port mapping ok.
default root user use "%" with mysql and mariadb.
Don't work : "localhost", "127.0.0.1", docker inspect IPAddress (ex. 172.19.0.3), network container aliases (OP "msqli"), etc, etc...
So the solution was to use "host.docker.internal" !
Hi I made this because react-native-datetimepicker doesn't work. Please feel free to try it.
https://github.com/sugitata/react-native-year-month-picker-select
** ** ** **
** ** // ** ** // /** /**
****** ****** //** ** ** ***** ****** ****** //** ** ** ***** ****** ******
//**//* **////** //*** /** **///**//**//*//**//* //*** /** **///**///**/ ///**/
/** / /** /** /** /**/******* /** / /** / /** /**/******* /** /**
/** /** /** ** **/**/**//// /** /** ** **/**/**//// /** /**
/*** //****** ** //*** //******/*** /*** ** //*** //****** //** //**
/// ////// // /// ////// /// /// // /// ////// // //
With mypy, you can put # type: ignore
at the very top of the file (after shebang and encoding declarations, afaik) and it will not type-check the whole file. This is probably not advisable and this issue probably indicates youโre doing something wrong. From where are you importing AppConfig
? Although it may just be that your linter or type-checker is misinterpreting literals as a separate typeโฆ
In macbook air M1 fixed by
sudo codesign --force --deep --sign - /Applications/Visual\ Studio\ Code.app
You probably want to set up an AWS IAM user that has permission to your AWS Cognito. Then your AWS IAM user can generate an access key to use in n8n.
https://docs.n8n.io/integrations/builtin/credentials/aws/#using-api-access-key
OAuth is more for authenticating multiple other users. For example, say you had many users and they each had different permissions. In this case, you might need OAuth so that the user HAS to sign in and you can only do what they have permissions to do.
def chapter_body(self, text):
self.set_font("Arial", size=12)
# Encode text to avoid Unicode errors
text = text.encode('latin-1', 'replace').decode('latin-1')
self.multi_cell(0, 10, text)
As per Maxim's answer, but the link died. Add this to the config file:
<system.net>
<mailSettings>
<smtp>
<network
clientDomain="mail.domain.com"
/>
</smtp>
</mailSettings>
</system.net>
Alternatively, use something like Lowcoder to build a UI that manages and triggers your workflow.
https://docs.lowcoder.cloud/lowcoder-documentation/workflows/n8n-integration
Unfortunately,
: myexp ( u1 u2 -- u3 ) \ u3 = u1^u2 over swap 1 ?do over * loop nip ;
Hangs if the exponent is 0. The correct answer is 1.
: myexp ( u1 u2 -- u3 ) \ u3 = u1^u2 1 swap 0 ?do over * loop nip ;
Will fix that, but it hangs if the exponent is negative.
I think this Pull-Request can meet your need: https://github.com/elastic/elasticsearch/pull/130054
Just add this and try to login. On Github Desktop app in File > options> Advanced:
Something like this should work
%%{init: {'gantt': { 'leftPadding': 100 }}}%%
For anyone else suffering with this issue but still getting stuck on connection attempts even after installing the server under ~/.vscode-server/bin/{commit-hash}, there is a new setting in the remote-ssh extension for getting past the connection attempts with Microsoft's update server.
Near the bottom of the extension options there's a tick-box that says 'Use Exec Server' (Uses the new bootstrapping mode when connecting to a server. Can be toggled off in the event of connection issues."
Untick this setting(Use Exec Server) box and the connection can be made without trying to download and install all the packages first. This will require the grunt-work from the previous answers in installing the package manually but will also bypass the need to be connected to the internet and having it fail because the local/and remote server are both offline.
Good luck!
You can just apply a fixed random pattern of sign flips to the input data and then do a fast Walsh Hadamard transform.
Repeat that again for sparse input data.
https://sites.google.com/view/algorithmshortcuts/home
Code:
If you want to be minimalist:
print(*range(0,101,15))
First try restarting your IDE and see if something happens. If not then Delete your python installation using revo uninstaller to ensure deep clean. Reinstall python using the official installer from their website. Make sure to use the default installation and add it to PATH. After that create a .venv in your project directory. If you already have one delete it. And reinstall all the packages in the venv. I have faced issues with pyside6 similar to yours where python can't find a package even though it's clearly installed. The only fix I have found is to delete the .venv folder and reinstall everything. It's apparently a common-ish thing with pyside6.
It's common sense to not use any SDK installed from the ms store. MS store is good for regular people using regular apps not Devs using dev tools. Btw, use pycharm for easier python coding. Pycharm CE is free.
try which conda activate
you could get a dir like this /usr/local/Caskroom/miniconda/base
/{base}
is the conda venv name,
change this with targeted env
then you could activate the env from it at /bin/activate
or with activate script dir
Did you manage to solve it by any chance?
That method failed for me because the "copy" had hidden info regarding begin and end of cell. As a result, I could not properly parse the data as a text string with End of Line commands. I am looking into the HTMLFile object solution.
The relevant section of code should be modified as follows:
<MudDataGrid Class="table" Items="context.Vendors" >
<Columns>
<MudBlazor.PropertyColumn Property="@(vendor => vendor.Name)" />
<MudBlazor.PropertyColumn Property="@(vendor => vendor.Description)" />
<MudBlazor.TemplateColumn Title="Action" Context="vendor">
<CellTemplate>
<MudLink Href="@($"vendors/edit?id={vendor.Item.Id}")">Edit</MudLink>
</CellTemplate>
</MudBlazor.TemplateColumn>
</Columns>
</MudDataGrid>
My chief errors were not using CellTemplate, and not understanding .Item.*
In Strapi 5, the process is the same as Martin Larizzate described, but the property names are different:
files: {
filepath: filePath,
originalFilename: fileName,
mimetype: mime.getType(filePath),
size: stats.size,
}
Run this command in the terminal this will fix the issue
flutter create --platforms=ios .
If you want to be minimalist, this gets the job done:
i=0
n=0
while n!=100:
i=i+15
n+=1
print(i)
nvm, I'm just dumb and didn't notice the terminal is interactive... I could basically select a running target and ping logs from it in the window
Regex can do the trick. Note that I've used the "s" flag, so a "." includes new lines - normally the first capture group would start at the beginning of the current line, rather than the beginning of all text:
echo preg_replace('/.*(?<=<body>)(.*)(?=<\/body>).*/s', '$1' ,$data); // get body text only
I realised I could add a CHR(34) instead of double quote and it worked.
There is a direct way of adding sources, resources, headers from folders nested in a Visual Studio projects directory.
In the toolbar of Solution Explorer, click "Show All Files".
Next right click the folder you need and select "Include in Project".
Now Visual Studio will not automatically scan this folder again and again. So we have two kinds of options.
If you are moving sources and headers from somewhere to these folders, just include the folders once again and Visual Studio will add them. This will however include all files in the folder that you manually removed from the project yourself.
If you want to create a new file in that folder from Solution Explorer, either
In the "Show All Files" view, add by right clicking on the folder and selecting Add option.
In the Default view, include the path along with the filename when select Add option. So instead of entering MyFile.cpp, it goes src/MyFile.cpp. Visual Studio will create any required folders in there is not.
For anyone having same question as I: "Obi softbody" in the unity asstestore can do the trick for both physics and visual.
But if you want something more visual and not physically so much effective "magica cloth" is the tool; it is also on the unity asstestore
There are some other tools as soft mesh deformer...
Can you provide context such as what operating system you're using, and what application you are using to write/execute code? My best guess is that the file browser opening in one case is the code editor's file explorer built into the app.
HTML is markup not a programming language . Use an actual programming language like PHP, JavaScript etc. There are many free resources for learning any of these languages and also for how to use it in raspberry pi. I would recommend JavaScript with NodeJS.
Found the solution by changing the format of table. Thank you, community!
Adding additional policies to the IAM role still did not work for me. This video got me the basics https://www.bing.com/videos/riverview/relatedvideo?&q=step+by+step+to+configure+RDS+SQL+restore+from+S3&&mid=C387ABE5AC396000E939C387ABE5AC396000E939&&mcid=507E1C5F5F944F0BB9504BE3A01DA122&FORM=VRDGAR
But it was still failing until I reset the master rds password!
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
Dinh Phuong Linh la culi cua a ma sao cam r kia ๐๐ผ๐ผ
for (int i = 6; i>0; i--){
cout<<space;
for (int j = i-1; j >=0; j--){
cout << star << " ";
}
space += " ";
cout << endl;
}
this works if you're trying to create a triangle that tapers downwards
I suggest changing the name to The type or namespace name could not be found
From your comment, I see that this is because the assembly did not load correctly.
This is an answer for anyone else having this problem - restarting Unity and your code editor should help, if not, check if you see miscellaneous files next to your file name (where the assembly name should be) - if it does - there are many ways to solve the miscellaneous files problem online