#import statement python
Explore tagged Tumblr posts
katerinaaqu · 7 months ago
Note
Is there an adaptation/retelling you like ? Sorry if it comes of as rude, not my intention, I'm just curious about your standards for an adaptation done right ☺️.
No worries I understand. It is a valid question actually and I have to say it depends a lot on the thing and how close I feel to it I suppose but here's something"
My standards of adaptation differ on the thing but like I believe the bare minimum for me especially for such detailed works would be to at least remotely follow the thing you are supposed to adapt; understand its structure, its meaning and its location, its messages and its timeframe. So for example if one makes a movie about the pantheon of an African country, let's say Angola or Kongo, the very least one can do is to research the area's customs, the reason behind their myths and the way the myths are moving. Understanding the culture is the first step even if just on the surface. Then I believe if you want to say that you make an adaptation and not a random thing that simply uses the myth as a starting point you are expected to follow the the source as much as possible. I mean if you have a thing that you claim to adapt and then do not follow anything at all from the major points then whatis the point to claim you adapt it in the first place? Lastly you should respect as much as possible the ethnicity and the appearance of the group you adapt. Obviously me as a Greek cannot play the African deities due to the fact that the deities are supposed to represent the groups that worship them.
Aknowledging that for any sort of adaptation and any culture is also important if one wants to make a respectable adaptation and not just a political statement in the form of adaptation. Changes are not only unavoidable, they are even expected but these changes shouldn't be done in a way that hurts the story and alters completely its meaning. And since I know that stories like EPIC the musical create a lot this question here's an example that I often use
The first saga released the idea behind Iliou Persis where Odysseus is the killer of Astyanax. Iliou Persis never specifies Odysseus' motive neither his psychological condition. Epic created a magnificent artistic liberty to imagine a possible scenario behind that murder and an amazingly complicated psychological tension in the character.
Opposing to that in the later sagas we have the total alteration of two of the most iconic things in the Odyssey; Circe and the Sirens, both completely important for the story's process, the character's persona and his character development. Arguably even people who never heard of the Odyssey before knew about the Sirens and how Odysseus escaped them, they knew about Circe and the relationship. Changing some of the basic parts of the plot is not adaptation or retelling in my books. If it is hurting the story and is not serving as to exploit one different side of the character but instead it exploits a totally different story then is not really adaptation
Can someone do both? Absolutely. It is a free world and it is art, but in my mind a story that was hurt to the point of not being the same story, it is not a good way to adapt it (which is why we even discuss on ancient sources even the ancient writers did not always adapt the sources faithfully and as you see we are talking about them to this day)
That is of course if someone aims to make adaptations in the first place that are supposed to retelling that story. There are of course ways people use a story to create satire or something similar (see for example Disney Hercules, Monty Python movies etc). The satire is by definition satire. It is supposed to make fun of something so it shouldn't be taken seriously in the first place
I hope this makes sense. I strongly believe that if one wants to call an adaptation an adaptation needs to be as accurate to it as possible and the changes they make need to be generic to the story or the culture they adapt. The changes can be so that they serve a purpose (let's say a younger target audience so the violent or explicit material must be obviously toned down or removed) but apart from that if someone claims that they adapt something they need to be close to the material they adapt, in my opinion and the artistic liberties that everyone is entitled to make, should not be hurting the story.
14 notes · View notes
haveyouseenthismovie-poll · 2 years ago
Note
Harry Potter is problematic for a lot more than transphobia. The antisemitism is very present, as is anti blackness, indigenous appropriation and bastardization, anti-Irish sentiment, homophobia, Sinophobia, etc. Also, it’s not just “the author is problematic” when the books and games and movies are full of her bigotry.
I understand and I apologize if my original post on this matter made it come across as though these issues with the series aren’t also important.
That being said, the sentiment of that post remains the same: if I were to avoid posting a Harry Potter movie due to its unsavory creator and content, then there would be countless other films that I could also not morally justify posting based on their content or who worked on them, which would be counterintuitive to the goal of this blog. Plenty of films that have appeared here and will appear here in the future are problematic in various ways, on account of their age or other factors. For instance, Life is Brian, which appeared in a poll several weeks ago, contains rape jokes, transphobic jokes, ableist jokes, blackface, and potentially other offensive things that I either didn't notice or don't remember. However, the Monty Python series is considered extremely popular and iconic in a lot of circles, thus it can be interesting get a percentage of how many people here have actually seen it, even if I disagree with its contents.
The goal of this blog is not to tell you to watch or support certain films; it’s not making any statements about the quality of these films or the morality of them, it is simply an attempt to gauge how popular various films are amongst the Tumblr userbase. If you dislike certain films being posted here, I wouldn’t blame you for unfollowing or blocking me for it.
56 notes · View notes
digitaldetoxworld · 2 days ago
Text
The C Programming Language Compliers – A Comprehensive Overview
 C is a widespread-purpose, procedural programming language that has had a profound have an impact on on many different contemporary programming languages. Known for its efficiency and energy, C is frequently known as the "mother of all languages" because many languages (like C++, Java, and even Python) have drawn inspiration from it.
C Lanugage Compliers 
Tumblr media
Developed within the early Seventies via Dennis Ritchie at Bell Labs, C changed into firstly designed to develop the Unix operating gadget. Since then, it has emerge as a foundational language in pc science and is still widely utilized in systems programming, embedded systems, operating systems, and greater.
2. Key Features of C
C is famous due to its simplicity, performance, and portability. Some of its key functions encompass:
Simple and Efficient: The syntax is minimalistic, taking into consideration near-to-hardware manipulation.
Fast Execution: C affords low-degree get admission to to memory, making it perfect for performance-critical programs.
Portable Code: C programs may be compiled and run on diverse hardware structures with minimal adjustments.
Rich Library Support: Although simple, C presents a preferred library for input/output, memory control, and string operations.
Modularity: Code can be written in features, improving readability and reusability.
Extensibility: Developers can without difficulty upload features or features as wanted.
Three. Structure of a C Program
A primary C application commonly consists of the subsequent elements:
Preprocessor directives
Main function (main())
Variable declarations
Statements and expressions
Functions
Here’s an example of a easy C program:
c
Copy
Edit
#include <stdio.H>
int important() 
    printf("Hello, World!N");
    go back zero;
Let’s damage this down:
#include <stdio.H> is a preprocessor directive that tells the compiler to include the Standard Input Output header file.
Go back zero; ends this system, returning a status code.
4. Data Types in C
C helps numerous facts sorts, categorised particularly as:
Basic kinds: int, char, glide, double
Derived sorts: Arrays, Pointers, Structures
Enumeration types: enum
Void kind: Represents no fee (e.G., for functions that don't go back whatever)
Example:
c
Copy
Edit
int a = 10;
waft b = three.14;
char c = 'A';
five. Control Structures
C supports diverse manipulate structures to permit choice-making and loops:
If-Else:
c
Copy
Edit
if (a > b) 
    printf("a is more than b");
 else 
Switch:
c
Copy
Edit
switch (option) 
    case 1:
        printf("Option 1");
        smash;
    case 2:
        printf("Option 2");
        break;
    default:
        printf("Invalid option");
Loops:
For loop:
c
Copy
Edit
printf("%d ", i);
While loop:
c
Copy
Edit
int i = 0;
while (i < five) 
    printf("%d ", i);
    i++;
Do-even as loop:
c
Copy
Edit
int i = zero;
do 
    printf("%d ", i);
    i++;
 while (i < 5);
6. Functions
Functions in C permit code reusability and modularity. A function has a return kind, a call, and optionally available parameters.
Example:
c
Copy
Edit
int upload(int x, int y) 
    go back x + y;
int important() 
    int end result = upload(3, 4);
    printf("Sum = %d", result);
    go back zero;
7. Arrays and Strings
Arrays are collections of comparable facts types saved in contiguous memory places.
C
Copy
Edit
int numbers[5] = 1, 2, three, 4, five;
printf("%d", numbers[2]);  // prints three
Strings in C are arrays of characters terminated via a null character ('').
C
Copy
Edit
char name[] = "Alice";
printf("Name: %s", name);
8. Pointers
Pointers are variables that save reminiscence addresses. They are powerful but ought to be used with care.
C
Copy
Edit
int a = 10;
int *p = &a;  // p factors to the address of a
Pointers are essential for:
Dynamic reminiscence allocation
Function arguments by means of reference
Efficient array and string dealing with
9. Structures
C
Copy
Edit
struct Person 
    char call[50];
    int age;
;
int fundamental() 
    struct Person p1 = "John", 30;
    printf("Name: %s, Age: %d", p1.Call, p1.Age);
    go back 0;
10. File Handling
C offers functions to study/write documents using FILE pointers.
C
Copy
Edit
FILE *fp = fopen("information.Txt", "w");
if (fp != NULL) 
    fprintf(fp, "Hello, File!");
    fclose(fp);
11. Memory Management
C permits manual reminiscence allocation the usage of the subsequent functions from stdlib.H:
malloc() – allocate reminiscence
calloc() – allocate and initialize memory
realloc() – resize allotted reminiscence
free() – launch allotted reminiscence
Example:
c
Copy
Edit
int *ptr = (int *)malloc(five * sizeof(int));
if (ptr != NULL) 
    ptr[0] = 10;
    unfastened(ptr);
12. Advantages of C
Control over hardware
Widely used and supported
Foundation for plenty cutting-edge languages
thirteen. Limitations of C
No integrated help for item-oriented programming
No rubbish collection (manual memory control)
No integrated exception managing
Limited fashionable library compared to higher-degree languages
14. Applications of C
Operating Systems: Unix, Linux, Windows kernel components
Embedded Systems: Microcontroller programming
Databases: MySQL is partly written in C
Gaming and Graphics: Due to performance advantages
2 notes · View notes
90percentstudios · 10 months ago
Note
so for ckc in the update before season 2 came out voices were added to the characters. How does the code for that look/work? I’m working on a project on renpy and want to add those voice bites in but I haven’t been able to find a tutorial.
i pasted everything here but realized tumblr might have issues retaining indentations (and there's a LOT of code related to voice bites, specifically the dynamic syllable-reacting voice bite update we did a while ago) so i'd recommend you download the code here! you can copy and paste it, edit it to fit your needs, etc.
i've included comments to hopefully explain some of what's going on. anyway, for those interested in reading on tumblr, here are some examples of how to define characters with voices (probably most important part of the code anyway):
-------------------- init offset = -2 init python: # Below is an example voice definition: "n_voice", which is used for narrator. We used to have an issue where the narrator's voice would continue playing even after the dialogue ended, hence the added code "play_voice_loop_limited" which is meant to stop the narrator's voice bite earlier.     def n_voice(event, interact=True, **kwargs):         if not interact:             return         if event == "show_done":             play_voice_loop_limited("sound/voice/n.ogg")         elif event == "slow_done":             renpy.music.stop(channel=u'voice0') # Below is Cody's voice, which changes depending on his age, hence lines like "if cod_bod == 'col12yo':".     def cod_voice(event, interact=True, **kwargs):         if not interact:             return         if event == "show_done":             if cod_bod != 'col12yo' and cod_bod != 'avg4yo':                 play_voice("sound/voice/cod.ogg")             if cod_bod == 'col12yo':                 play_voice("sound/voice/cod12yo.ogg")             if cod_bod == 'avg4yo':                 play_voice("sound/voice/cod4yo.ogg")         elif event == "slow_done":             renpy.music.stop(channel=u'voice0') # But if you don't need variable voices, here's an example of a voice definition without all the if statements:     def example_voice(event, interact=True, **kwargs):         if not interact:             return         if event == "show_done":             play_voice("sound/voice/example.ogg")         elif event == "slow_done":             renpy.music.stop(channel=u'voice0') # Now, in an "init" block instead of an "init python" block, we can define characters. Use "callback=n_voice" to indicate which voice definition to use for which character. You can omit "callback=n_voice" entirely if you don't want your character to have a voice bite. init:     define n = Character(_(""), callback=n_voice, color = "#a4a4a4", window_background="textbox_narrator")     define cod = Character(_("[cod_name]"), callback=cod_voice, color = "#00b7ff", window_background="textbox_cod")     define mute = Character(_("[mute_name]"), color = "#00b7ff", window_background="textbox_mute")
9 notes · View notes
beardedmrbean · 1 year ago
Text
A luxury handbag designer has been jailed after pleading guilty to smuggling purses made of the skins of protected reptiles, according to the U.S. Department of Justice.
Nancy Teresa Gonzalez de Barberi, found of the luxury handbag company Gzuniga, was sentenced to 18 months in prison on Monday for illegally importing merchandise from Colombia to the United States that was made from protected wildlife, authorities said.
Mauricio Giraldo, an associate of Gonzalez, was also sentenced to prison, according to the Department of Justice.
“Gzuniga was ordered to forfeit all handbags and other previously seized product, banned for three years from any activities involving commercial trade in wildlife and sentenced to serve three years of probation,” officials said. “Gonzalez was sentenced to 18 months in prison with credit for time served, a supervised release of three years and to pay a special assessment. Giraldo was sentenced to time served, approximately 22 months based on incarceration in Colombia and the United States since his extradition, a year of supervised release and to pay a special assessment.”
Another co-conspirator, John Camilo Aguilar Jaramillo, had previously pleaded guilty on April 8 and is set to be sentenced on June 27, authorities said.
Gonzalez, Giraldo and Jaramillo are Colombian citizens and were extradited to the United States to face the charges brought against them.
The caiman and python species the company was making bags out of are protected by the Convention on International Trade in Endangered Species of Wild Fauna and Flora (CITES), to which both the United States and Colombia are signatories. The trade in caimans and pythons is not completely banned but is strictly regulated under CITES rules.
“The United States signed on to CITES in an effort to help protect threatened and endangered species here and abroad from trafficking,” said Assistant Attorney General Todd Kim of the Justice Department’s Environment and Natural Resources Division in a statement released by the Department of Justice on Monday. “We will not tolerate illegal smuggling. We appreciate the efforts of our many federal and international partners who have helped with the investigation, extradition and prosecution of this case.”
The conspirators brought “hundreds of designer purses, handbags and totes into the United States by enlisting friends, relatives and even employees of Gonzalez’s manufacturing company in Colombia to wear the designer handbags or put them in their luggage while traveling on passenger airlines,” authorities said.
Once the merchandise was in the United States, the bags were delivered or shipped to the Gzuniga showroom in New York to be displayed and sold.
“The United States, in company with the international community, has established a system for overseeing the trafficking in protected species of wildlife. That system relies on a system of permits and oversight by many agencies and demands strict compliance by all those engaged in such trade,” said U.S. Attorney Markenzy Lapointe for the Southern District of Florida. “The press of business, production deadlines or other economic factors are not justification for anyone to knowingly flout the system and attempt to write their own exceptions to wildlife trafficking laws. In cooperation with our international partners, our Office will continue to require strict adherence to laws that protect our endangered species.”
An indictment charged Gzuniga, Gonzalez, Giraldo and Jaramillo with one count of conspiracy and two counts of smuggling for illegally importing designer handbags made from caiman and python skin from February 2016 to April 2019.
“The U.S. Fish and Wildlife Service is deeply committed to combatting wildlife trafficking in all its forms. The Gonzalez case underscores the importance of robust collaboration with federal and international partners to disrupt illegal wildlife trade networks,” said Assistant Director Edward Grace of the U.S. Fish and Wildlife Service’s (USFWS) Office of Law Enforcement. “This investigation uncovered a multi-year scheme that involved paid couriers smuggling undeclared handbags made of CITES-protected reptile skins into the U.S. to be sold for thousands of dollars. The Service will continue to seek justice for protected species exploited for profit, and we will hold accountable those who seek to circumvent international controls meant to regulate their sustainable trade.”
9 notes · View notes
lumilasi · 1 year ago
Text
Tumblr media Tumblr media Tumblr media
UPDATE: Decided to make Max' human form colors match her naga design better, I think that was what was bothering me about them
Note: Max has no ears on purpose even in human form, also they can transform only partially where their upper body still looks like the human one.
Bio below: (unfinished, I'm gonna need time to develop them/her)
Name: Max Karuna
Nicknames: Snakes (Sebastian, Chouma) Maxie (Franziska)
Nonbinary, uses She/they
Age: 29
Height: 167 cm (human)
Occupation: A rockband's drummer
Family: They apparently has a MASSIVE family, but rarely sees them due to her job (not relevant to the main story either)
Love Interest: Franziska Belmont (A sith cat/cat witch)
Friends: Sebastian Kravchenko (Wyvern, bandmate) Chouma (A moth spirit, bandmate) Kaspian Kravchenko (Also a Wyvern, Sebastian's brother) Laurent Delune (Sebastian's friend) Taiga Delune (Laurent's GF)
Powers:
Aquatic abilities: They can breathe underwater, dive into the depth of 4 km, swim 50 mph, and send supersonic signals through water and has some water elemental powers, though she needs to be in contact with water to do so, unlike actual elementals.
Excellent drumming skills: Self explanatory
Shapeshifting: They can switch between a human, a half or full-naga, as well as a full snake form. The latter is the size of a normal python snake, whereas her naga form can be up to 10-15 meters long.
Snake hair: She can turn her hair into snakes that have very sharp teeth, and can choke or crush things. (Being a python type, Max is one of those rarer Naga with no poison production, most Nagas are venomous snakes)
Venom: She can produce venom from her fangs and clawed hands that can either sedate, paralyze or kill a target. They aren't the most poisonous type though, so typically the venom doesn't work lethally on most healthy humans, let alone nonhuman beings.
Sixth sense for treasure: Her kind generally are well known for finding anything lost that holds importance, and she is no different. If something is missing, their bandmates often ask them to find it.
WEAKNESSES:
Max can be easily coaxed for shenanigans, which can cause some issues and messes to be cleaned. She, as a snake, is not fond of cold climates and can get the flu extremely easily during winter.
PERSONALITY:
Max is confident, outgoing and friendly person, who makes friends easily and is generally seen as a bit of a sunny personality to be around. They have a mischievous side despite seeming very chill and mature at first glance, and tends to pull pranks on people a lot. They are also very attuned to people's emotions and vibes, and can tell when someone is having a bad day and what could perhaps help, or when is not the right time to talk about something.
They can be a bit of a potty mouth, but they try their best to censor themselves when around kids or people who don't like swearing (at least, if they like said people)
EXTRA FACTS:
Her snake colors and pattern is inspired by the banana/coral glow python
Max enjoys ridiculously sugary and sweet drinks and freakshakes.
Max' trademark coat was actually designed by Sebastian's brother, it was a special birthday gift and not available for sale anywhere. Kaspian made it based on her ideas.
Max finds it funny how all of their love interest are cats; Sebastian and Chouma with the Bakeneko brothers Alois and Quinn, and her/they with cat witch Franziska. (Though it takes a while before Frankie actually dares to ask her out, basically this happens properly post-main story for Frankie's brother)
Max loves action movies and silly goofy b-movie horror movies, finding them hilarious
They can't sing, at all. But they do make sick beats with the drums
Max of course largely follows punkish/grunge style, but also tends to enjoy including something really bright and colorful to it.
In general she tends to wear one really eccentric statement piece with almost every outfit, or at least one with a very strongly contrasting color.
Max's favorite style of party is treasure hunting, and anytime they celebrate her birthday or something, their friends arrange a hunt of some sort.
She has a habit of jokingly saying "oooo, Shiny!" about anything she likes, not just actual Jewels. It could be a friend, their girlfriend, clothes they like, etc.
Their kind tend to not have ears by default in human form, so if trying to blend in with actual humans, they have to remember to shapeshift their head to include those.
17 notes · View notes
guzsdaily · 6 months ago
Text
Good Code is Boring
Daily Blogs 358 - Oct 28th, 12.024
Something I started to notice and think about, is how much most good code is kinda boring.
Clever Code
Go (or "Golang" for SEO friendliness) is my third or fourth programming language that I learned, and it is somewhat a new paradigm for me.
My first language was Java, famous for its Object-Oriented Programming (OOP) paradigms and features. I learned it for game development, which is somewhat okay with Java, and to be honest, I hardly remember how it was. However, I learned from others how much OOP can get out of control and be a nightmare with inheritance inside inheritance inside inheritance.
And then I learned JavaScript after some years... fucking god. But being honest, in the start JS was a blast, and I still think it is a good language... for the browser. If you start to go outside from the standard vanilla JavaScript, things start to be clever. In an engineering view, the ecosystem is really powerful, things such as JSX and all the frameworks that use it, the compilers for Vue and Svelte, and the whole bundling, and splitting, and transpiling of Rollup, ESBuild, Vite and using TypeScript, to compile a language to another, that will have a build process, all of this, for an interpreted language... it is a marvel of engineering, but it is just too much.
Finally, I learned Rust... which I kinda like it. I didn't really make a big project with it, just a small CLI for manipulating markdown, which was nice and when I found a good solution for converting Markdown AST to NPF it was a big hit of dopamine because it was really elegant. However, nowadays, I do feel like it is having the same problems of JavaScript. Macros are a good feature, but end up being the go-to solution when you simply can't make the code "look pretty"; or having to use a library to anything a little more complex; or having to deal with lifetimes. And if you want to do anything a little more complex "the Rust way", you will easily do head to head with a wall of skill-issues. I still love it and its complexity, and for things like compiler and transpilers it feels like a good shot.
Going Go
This year I started to learn Go (or "Golang" for SEO friendliness), and it has being kinda awesome.
Go is kinda like Python in its learning curve, and it is somewhat like C but without all the needing of handling memory and needing to create complex data structured from scratch. And I have never really loved it, but never really hated it, since it is mostly just boring and simple.
There are no macros or magic syntax. No pattern matching on types, since you can just use a switch statement. You don't have to worry a lot about packages, since the standard library will cover you up to 80% of features. If you need a package, you don't need to worry about a centralized registry to upload and the security vulnerability of a single failure point, all packages are just Git repositories that you import and that's it. And no file management, since it just uses the file system for packages and imports.
And it feels like Go pretty much made all the obvious decisions that make sense, and you mostly never question or care about them, because they don't annoy you. The syntax doesn't get into your way. And in the end you just end up comparing to other languages' features, saying to yourself "man... we could save some lines here" knowing damn well it's not worth it. It's boring.
You write code, make your feature be completed in some hours, and compile it with go build. And run the binary, and it's fast.
Going Simple
And writing Go kinda opened a new passion in programming for me.
Coming from JavaScript and Rust really made me be costumed with complexity, and going now to Go really is making me value simplicity and having the less moving parts are possible.
I am becoming more aware from installing dependencies, checking to see their dependencies, to be sure that I'm not putting 100 projects under my own. And when I need something more complex but specific, just copy-and-paste it and put the proper license and notice of it, no need to install a whole project. All other necessities I just write my own version, since most of the time it can be simpler, a learning opportunity, and a better solution for your specific problem. With Go I just need go build to build my project, and when I need JavaScript, I just fucking write it and that's it, no TypeScript (JSDoc covers 99% of the use cases for TS), just write JS for the browser, check if what you're using is supported by modern browsers, and serve them as-is.
Doing this is really opening some opportunities to learn how to implement solutions, instead of just using libraries or cumbersome language features to implement it, since I mostly read from source-code of said libraries and implement the concept myself. Not only this, but this is really making me appreciate more standards and tooling, both from languages and from ecosystem (such as web standards), since I can just follow them and have things work easily with the outside world.
The evolution
And I kinda already feel like this is making me a better developer overhaul. I knew that with an interesting experiment I made.
One of my first actual projects was, of course, a to-do app. I wrote it in Vue using Nuxt, and it was great not-gonna-lie, Nuxt and Vue are awesome frameworks and still one of my favorites, but damn well it was overkill for a to-do app. Looking back... more than 30k lines of code for this app is just too much.
And that's what I thought around the start of this year, which is why I made an experiment, creating a to-do app in just one HTML file, using AlpineJS and PicoCSS.
The file ended up having just 350 files.
Today's artists & creative things Music: Torna a casa - by Måneskin
© 2024 Gustavo "Guz" L. de Mello. Licensed under CC BY-SA 4.0
4 notes · View notes
goldeneducation · 8 months ago
Text
"DCA"(DIPLOMA IN COMPUTER APPLICATION)
The best career beginning course....
Tumblr media
Golden institute is ISO 9001-2015 certified institute. Here you can get all types of computer courses such as DCA, CFA , Python, Digital marketing, and Tally prime . Diploma in Computer Applications (DCA) is a 1 year "Diploma Course" in the field of Computer Applications which provides specialization in various fields such as Fundamentals & Office Productivity tools, Graphic Design & Multimedia, Programming and Functional application Software.
Tumblr media
A few of the popular DCA study subjects are listed below
Basic internet concepts Computer Fundamentals Introduction to programming Programming in C RDBMS & Data Management Multimedia Corel draw Tally ERP 9.0 Photoshop
Benefits of Diploma in Computer Application (DCA)
After completion of the DCA course student will able to join any computer jobs with private and government sectors. The certification of this course is fully valid for any government and private deportment worldwide. DCA is the only best option for the student to learn computer skills with affordable fees.
DCA Computer course : Eligibilities are here... Students aspiring to pursue Diploma in Computer Applications (DCA) course must have completed their higher school/ 10 + 2 from a recognized board. Choosing Computers as their main or optional subject after class 10 will give students an additional edge over others. Apart from this no other eligibility criteria is set for aspirants. No minimum cutoff is required.
Tumblr media
"TALLY"
A Tally is accounting software. To pursue Tally Course (Certificate and Diploma) you must have certain educational qualifications to thrive and prosper. The eligibility criteria for the tally course is given below along with all significant details on how to approach learning Tally, and how you can successfully complete the course. Generally, the duration of a Tally course is 6 month to 1 year ,but it varies depending on the tally institution you want to join. Likewise, tally course fees are Rs. 10000-20000 on average but it also varies depending on what type of tally course or college you opt for. accounting – Accounting plays a pivotal role in Tally
Key Benefits of the Course:
Effective lessons (topics are explained through a step-by-step process in a very simple language) The course offers videos and e-books (we have two options Video tutorials in Hindi2. e-book course material in English) It offers a planned curriculum (the entire tally online course is designed to meet the requirements of the industry.) After the completion of the course, they offer certificates to the learners.
Tally Course Syllabus – Subjects To Learn Accounting Payroll Taxation Billing Banking Inventory
Tally Course
Eligibility criteria: 10+2 in commerce stream Educational level: Certificate or Diploma Course fee: INR 2200-5000 Skills required: Accounting, Finance, Taxation, Interpersonal Skills Scope after the course: Accountant, Finance Manager, Chartered Accountant, Executive Assistant, Operations Manager Average salary: INR 5,00,000 – 10,00,000
Tumblr media
"In this Python course"
Rapidly develop feature-rich applications using Python's built-in statements, functions, and collection types. Structure code with classes, modules, and packages that leverage object-oriented features. Create multiple data accessors to manage various data storage formats. Access additional features with library modules and packages.
Python for Web Development – Flask Flask is a popular Python API that allows experts to build web applications. Python 2.6 and higher variants must install Flask, and you can import Flask on any Python IDE from the Flask package. This section of the course will help you install Flask and learn how to use the Python Flask Framework.
Subjects covered in Python for Web development using Flask:
Introduction to Python Web Framework Flask Installing Flask Working on GET, POST, PUT, METHODS using the Python Flask Framework Working on Templates, render template function
Python course fees and duration
A Python course costs around ₹2200-5000.This course fees can vary depending on multiple factors. For example, a self-paced online course will cost you less than a live interactive online classroom session, and offline training sessions are usually expensive ones. This is mainly because of the trainers’ costs, lab assistance, and other facilities.
Some other factors that affect the cost of a Python course are its duration, course syllabus, number of practical sessions, institute reputation and location, trainers’ expertise, etc. What is the duration of a Python course? The duration of a basic Python course is generally between 3 month to 6 months, and advanced courses can be 1 year . However, some courses extend up to 1 year and more when they combine multiple other courses or include internship programs.
Advantages of Python Python is easy to learn and put into practice. … Functions are defined. … Python allows for quick coding. … Python is versatile. … Python understands compound data types. … Libraries in data science have Python interfaces. … Python is widely supported.
Tumblr media
"GRAPHIC DESIGN"
Graphic design, in simple words, is a means that professional individuals use to communicate their ideas and messages. They make this communication possible through the means of visual media.
A graphic designing course helps aspiring individuals to become professional designers and create visual content for top institutions around the world. These courses are specialized to accommodate the needs and requirements of different people. The course is so popular that one does not even need to do a lot of research to choose their preferred colleges, institutes, or academies for their degrees, as they are almost mainstream now.
A graphic design course have objectives:
To train aspirants to become more creative with their visual approach. To train aspirants to be more efficient with the technical aspects of graphics-related tasks and also to acquaint them with relevant aspects of a computer. To train individuals about the various aspects of 2-D and 3-D graphics. To prepare aspirants to become fit for a professional graphic designing profession.
Which course is best for graphic design? Best graphic design courses after 12th - Graphic … Certificate Courses in Graphic Design: Adobe Photoshop. CorelDraw. InDesign. Illustrator. Sketchbook. Figma, etc.
It is possible to become an amateur Graphic Designer who is well on the road to becoming a professional Graphic Designer in about three months. In short, three months is what it will take to receive the professional training required to start building a set of competitive professional job materials.
Tumblr media
THE BEST COMPUTER INSTITUTE GOLDEN EDUCATION,ROPNAGAR "PUNJAB"
The best mega DISCOUNT here for your best course in golden education institute in this year.
HURRY UP! GUYS TO JOIN US...
Don't miss the chance
You should go to our institute website
WWW.GOLDEN EDUCATION
CONTACT US: 98151-63600
VISIT IT:
2 notes · View notes
pandeypankaj · 8 months ago
Text
How do I learn Python in depth?
Improving Your Python Skills
  Writing Python Programs Basics: Practice the basics solidly. 
  Syntax and Semantics: Make sure you are very strong in variables, data types, control flow, functions, and object-oriented programming. 
 Data Structures: Be able to work with lists, tuples, dictionaries, and sets, and know when to use which. 
 Modules and Packages: Study how to import and use built-in and third-party modules. 
Advanced Concepts
Generators and Iterators: Know how to develop efficient iterators and generators for memory-efficient code. 
Decorators: Learn how to dynamically alter functions using decorators. 
Metaclasses: Understand how classes are created and can be customized. 
Context Managers: Understand how contexts work with statements. 
Project Practice 
 Personal Projects: You will work on projects that you want to, whether building a web application, data analysis tool, or a game.
 Contributing to Open Source: Contribute to open-source projects in order to learn from senior developers. Get exposed to real-life code. 
 Online Challenges: Take part in coding challenges on HackerRank, LeetCode, or Project Euler. 
 Learn Various Libraries and Frameworks
 Scientific Computing: NumPy, SciPy, Pandas
 Data Visualization: Matplotlib, Seaborn
 Machine Learning: Scikit-learn, TensorFlow, PyTorch
 Web Development: Django, Flask
Data Analysis: Dask, Airflow
Read Pythonic Code
 Open Source Projects: Study the source code of a few popular Python projects. Go through their best practices and idiomatic Python. 
 Books and Tutorials: Read all the code examples in books and tutorials on Python. 
 Conferences and Workshops
  Attend conferences and workshops that will help you further your skills in Python. PyCon is an annual Python conference that includes talks, workshops, and even networking opportunities. Local meetups will let you connect with other Python developers in your area. 
Learn Continuously
 Follow Blogs and Podcasts: Keep reading blogs and listening to podcasts that will keep you updated with the latest trends and developments taking place within the Python community.
Online Courses: Advanced understanding in Python can be acquired by taking online courses on the subject.
 Try It Yourself: Trying new techniques and libraries expands one's knowledge.
Other Recommendations
 Readable-Clean Code: For code writing, it's essential to follow the style guide in Python, PEP 
Naming your variables and functions as close to their utilization as possible is also recommended.
 Test Your Code: Unit tests will help in establishing the correctness of your code.
 Coding with Others: Doing pair programming and code reviews would provide you with experience from other coders.
 You are not Afraid to Ask for Help: Never hesitate to ask for help when things are beyond your hand-on areas, be it online communities or mentors.
These steps, along with consistent practice, will help you become proficient in Python development and open a wide range of possibilities in your career.
2 notes · View notes
mvishnukumar · 9 months ago
Text
How much Python should one learn before beginning machine learning?
Before diving into machine learning, a solid understanding of Python is essential. :
Tumblr media
Basic Python Knowledge:
Syntax and Data Types: 
Understand Python syntax, basic data types (strings, integers, floats), and operations.
Control Structures: 
Learn how to use conditionals (if statements), loops (for and while), and list comprehensions.
Data Handling Libraries:
Pandas: 
Familiarize yourself with Pandas for data manipulation and analysis. Learn how to handle DataFrames, series, and perform data cleaning and transformations.
NumPy: 
Understand NumPy for numerical operations, working with arrays, and performing mathematical computations.
Data Visualization:
Matplotlib and Seaborn: 
Learn basic plotting with Matplotlib and Seaborn for visualizing data and understanding trends and distributions.
Basic Programming Concepts:
Functions: 
Know how to define and use functions to create reusable code.
File Handling: 
Learn how to read from and write to files, which is important for handling datasets.
Basic Statistics:
Descriptive Statistics: 
Understand mean, median, mode, standard deviation, and other basic statistical concepts.
Probability: 
Basic knowledge of probability is useful for understanding concepts like distributions and statistical tests.
Libraries for Machine Learning:
Scikit-learn: 
Get familiar with Scikit-learn for basic machine learning tasks like classification, regression, and clustering. Understand how to use it for training models, evaluating performance, and making predictions.
Hands-on Practice:
Projects: 
Work on small projects or Kaggle competitions to apply your Python skills in practical scenarios. This helps in understanding how to preprocess data, train models, and interpret results.
In summary, a good grasp of Python basics, data handling, and basic statistics will prepare you well for starting with machine learning. Hands-on practice with machine learning libraries and projects will further solidify your skills.
To learn more drop the message…!
2 notes · View notes
crippl-hacker · 1 year ago
Text
Python Day 2
Today I am starting off with exercise 13. Exercise 13 introduces the concepts of variables, modules, and argv.
Tumblr media
[ID: Exercise 13 code. It imports the argv module from sys, then uses argv to create 4 variables, script, first, second, and third. Next print() is used to print out the different variables /ID]
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
When calling the program I was confused as to why I got the error of too many variables. Looking into this I found that the first variable of 'argv' is always going to be the script. I then fixed that and added in script as the first variable.
Next for the study drill I wrote a new variable and updated the code to print the retrieved information.
Tumblr media Tumblr media
Alrighty then - onto exercise 14. Exercise 14 is about practicing prompts and variables.
Tumblr media Tumblr media
In the study drills I updated the script with a new prompt and print statement.
Tumblr media Tumblr media
Exercise 15 is a simple program that prints out the contents of a file. An important thing to note is to always close the file when doing things like this!
Tumblr media
Exercise 16 practices making a copy of a file and then updating it with 3 lines from user input.
Tumblr media Tumblr media
I ended up running into the issue where it was saying that it couldn't read the file. I ended up finding out that .read() starts from the cursor position - and if the cursor is at the end of the file from writing it you will not have your file printed.
Tumblr media Tumblr media Tumblr media Tumblr media
Exercise 17 is practicing copying files over and was relatively simple.
Tumblr media Tumblr media
4 notes · View notes
saucy-mesothelioma · 1 year ago
Note
Is there any piece of British media you enjoy a lot? I want to learn the British accent (for my career, ofc) and it's the best way to get myself into it
Ooh, that's a really intriguing question, and I'd love to hear about your career if you don't mind sharing because it sounds interesting! I like to do voiceovers for a hobby so I definitely get the importance of having media to compare and go off of. Of course, I have no clue about specific accents so you might have to do additional research if you need a very specific region, but I'll try my best to give a few pieces of media that might be able to help.
•The Magnus Archives/The Magnus Protocol: It's a horror podcast about an institute that takes in statements on the paranormal, and has a wide array of characters to use for reference. And since it's an audio performance, it might be easier to pick up inflections and things like that. Not to mention it's incredibly entertaining.
•The Outlaws: I never got around to finishing this show, but it's pretty good. It's about a group of people doing community service that end up getting involved in a drug gang ring. It's pretty funny even though quite a bit of the comedy comes from second-hand embarrassment, but it's definitely not bad.
•End of the F***ing World: That's another show I haven't finished primarily because I was watching it with my brother. From what I can remember, it's about two kids (one a moody teen girl and the other a teen boy who thinks he's a psychopath) who run off to find the girl's estranged father. Unfortunately, I don't remember much about it, but from what I do know it was entertaining.
•Extras: It's sort've like The Office (in fact it was written and stars two of the guys who wrote the UK Office) but it follows a guy who's trying to become a prominent actor and fails miserably. It's got a lot of guest appearances and it's a relatively short series as well. I personally hate shows like The Office, but this was one I liked.
•Haunting of Bly Manor: Not as good as Haunting of Hill House in my opinion, but it's still an incredibly good although short horror series. It's about a woman who goes to care for two kids for their uncle after they were orphaned. It'll definitely be entertaining to watch and it's worth a try.
•Hitchhiker's Guide to the Galaxy Radio Show/TV Series: You already know what Hitchhiker's Guide is so I won't explain it, but if I had to choose one or the other to suggest I would go with the radio show. The TV series is amazing, don't get me wrong, but for your purposes I find that audio-only pieces of media would work best. This is the version I prefer to listen to.
•Anything Monty Python: I can't guarantee that this would be the best source because it genuinely might be too entertaining. I fuckin love Monty Python with everything I have and there's not much I can say about it because it's just something you have to experience.
Of course, you can also look towards prominent British actors like Tim Curry, Angela Lansbury, and John Oliver, which is something I would suggest doing as well. Personally another thing that I've found to be helpful is also practicing a transatlantic accent, which is basically halfway between an American accent and a British accent. The only two people I can think of off the top of my head that have a very good transatlantic accent are Vincent Price and David Ogden Stiers (specifically as his role as Charles Winchester in M*A*S*H), so that might be some good warm-up. Hopefully this was of some help!
3 notes · View notes
skaruresonic · 2 years ago
Text
The reason I get excited at being able to implement even small functions in RenPy is because whenever I try to follow a cookbook or tutorial: = The information is outdated, and I don't realize this until I get errors trying to execute the code. Much of the documentation that exists is obsolete by now, and RenPy is always updating the syntax it will accept. So you can have code that works for version 7.1.1 if you "word" the code right, but not work for version 8.1.1 because the newer version changed how you express the function. = The tutorial-maker made a mistake or neglected to establish an important variable early on, and you only realize it 5 forum thread posts later when they're like "teehee disregard what I just said, this is the correct code" = The code is poorly-written. Nobody in this Chili's fucking indents their shit. Also y'all need to comment out code with TWO pound signs, not one.
= I keep getting syntax errors because it's like 3 AM and I don't realize I forgot a single quotation mark. = It turns out the function I need to manipulate is a piece of code in screens.rpy or gui.rpy, or both, or neither, or it needs to be defined in the script as well. Nobody tells you where to put init:, for example, everyone assumes you already know you put it in the script. And like I said, because RenPy changes what syntax it will accept with each version of the program, you need to place code in specific places in order for it to work. But some other stuff like changing the text, font, and size of the notify box but not the notification box without also changing all of your game's GUI can be tricky.
= After much banging of head against wall, you realize the way you're implementing something is contradictory and causes a crash because you're trying to make RenPy read something in the wrong order (putting cart before horse) or you're trying to make it read something you haven't defined, or which doesn't exist. The computer can only read variables you have defined. = Didn't indent. = Indented too much. = RenPy decides nah, it doesn't wanna run the code.
Tumblr media
That being said, I am now unreasonably excited about finally being able to use object classes in Python. The problem I kept running into in OaS was that, for whatever reason, I couldn't get persistent variables to stick, meaning the flags for triggers that were not as complex as I may have liked. But object classes seem to work around that constraint just fine, and the best part is I don't have to define a million individual variables with easily-breakable if/else statements.
So now instead of the narrative being based on one binary choice while feigning the illusion of divergence in the others, I can craft a more complex narrative that actually takes your choices into account and assigns variables to them that will influence the ending you get or which routes you see.
Implementation is going to be a shit ton of work as usual, but I'm actually really excited to see how this will pan out.
4 notes · View notes
regicidal-defenestration · 2 years ago
Text
Never realised how good I had it writing fiction until I started writing non-fictional articles and had to figure Who The Hell Is My Audience like. the audience for fics is people who enjoyed that media Plus This Fun Bonus Twist but right now I'm flip flopping wildly between "writing for someone who doesn't know what a Python import statement is" and "writing for someone who wants to know the exact reasoning behind using 1000 output features in my second to last Linear layer"
4 notes · View notes
1stepgrow · 16 minutes ago
Text
📘 Want your Python programs to make decisions? This video is your ultimate beginner-friendly guide to the Python if statement, one of the most important building blocks in programming! Learn how to control the flow of your code based on conditions, user input, or data.
From simple checks to nested decisions, we’ll walk through real-world examples that help you understand how and when to use if, elif, and else statements effectively.
0 notes
gla-courses · 6 days ago
Text
Unlocking the Power of Numbers: Your Guide to MBA in Data Analytics
Tumblr media
In today’s fast-paced, data-driven world, decisions backed by analytics are no longer a luxury—they’re a necessity. Whether it's forecasting trends, optimizing operations, or enhancing customer experience, data analytics has become the backbone of modern business strategy. This growing demand has catapulted the popularity of an MBA in Data Analytics, a program designed to transform data enthusiasts into industry-ready professionals.
Why Choose an MBA in Data Analytics?
An MBA in Data Analytics is more than just crunching numbers—it’s about uncovering patterns, making strategic decisions, and driving business outcomes. The course uniquely blends core business management skills with modern analytical tools such as Python, R, SQL, Tableau, and machine learning. This fusion empowers students to not only analyze data but also to translate insights into impactful business strategies.
MBA in Data Analytics Admission: What You Should Know
Securing MBA in Data Analytics admission typically begins with an application process that evaluates both academic and professional credentials. Most top-tier institutions accept scores from entrance exams like CAT, XAT, MAT, GMAT, or equivalent. Besides test scores, factors such as a strong statement of purpose, letters of recommendation, and work experience in tech or analytics can strengthen your profile.
While some universities offer rolling admissions, others follow strict deadlines. Prospective students should thoroughly research individual college timelines and requirements. Online MBA options in data analytics have also gained traction, especially among working professionals, offering flexibility without compromising on quality.
youtube
Understanding MBA in Data Analytics Eligibility
When it comes to MBA in Data Analytics eligibility, most institutions require a bachelor’s degree in any discipline with a minimum aggregate score (usually around 50%). However, candidates from mathematics, engineering, computer science, or statistics backgrounds often find themselves more comfortable with the analytical coursework.
Work experience, though not always mandatory, is often preferred—especially by premier B-schools. Proficiency in basic statistics and an aptitude for logical thinking are also considered essential for aspirants stepping into the realm of analytics.
Breaking Down the MBA in Data Analytics Fees
Pursuing an MBA comes with a financial commitment, and it’s important to understand the MBA in Data Analytics fees before diving in. In India, the fee structure can range widely based on the institution and mode of study. While private universities may charge anywhere between ₹5 lakhs to ₹20 lakhs for the entire course, government institutions tend to offer more affordable rates.
Online and part-time MBA programs offer a budget-friendly alternative without compromising educational quality, with fees ranging between ₹1.5 lakhs to ₹6 lakhs. Many institutions also offer installment payment options, scholarships, or financial aid to deserving students, easing the burden on aspirants.
MBA in Data Analytics Placement: A Future Full of Promise
When you invest in a degree, you want to know that it’ll pay off. The good news is, MBA in Data Analytics placement records speak volumes. Graduates are in high demand across sectors like finance, healthcare, e-commerce, manufacturing, IT, and consulting.
Top recruiting firms include tech giants like Google, Amazon, Accenture, Deloitte, and IBM, as well as startups and MNCs looking to harness the power of big data. Roles offered span across Data Scientist, Business Analyst, Data Strategist, Risk Analyst, and Marketing Analytics Manager, with starting packages often ranging between ₹8 lakhs to ₹25 lakhs per annum, depending on the skillset and experience. As businesses become increasingly reliant on data to drive decision-making, the value of professionals trained in analytics continues to rise. An MBA in Data Analytics doesn’t just prepare you for a job—it equips you with the mindset, tools, and expertise to lead in a data-centric world.
0 notes