Anutechsk1

How to get 1TB cloud storage free

Get 1TB cloud storage free

Listen, you may think it’s too good to be true but it is here. Let me show you proof from my own profile. This is a better deal than Google, or Apple storage, with the same features FREE!!

It’s real. See?

Anutechsk1

Sk2

Sk3

Earn 1 tb and free money

Yep, not only can you get 1tb of storage, you can get the potential of also earning money or extra storage for your free storage without having to pay a dime to get started. I do it for extra storage, let’s go get your terabyte cloud storage.

Why not use Google or Apple cloud storage? Google is racist, and Apple is currently practically engaging in unfair monopolistic practices and normally not legal, but bill gates had money to beat the charges back in 1998 so only way to fight back is to go elsewhere and you’ll get 1tb free. Do these fascist elitists offer free terabyte cloud storage for preservation of your memories or important business documents? Yeah no. I think not. Don’t believe me?

Microsoft conspiring with racist Joe Biden and his corrupt DOJ to suppress free speech and spy on us all.

Microsoft bigot court documents

Redacted court documents violation of free speech

Microsoft_Motion_to_Modify_PV_NDOs

Regardless of how you feel about project Veritas, this is very real proof we are under threat of a westernized fascist government run by racist Joe Biden.

More information and further redacted court documents here

if you don’t get this free 1TB cloud storage, you’ll likely have the mainstream cloud services delete your cherished memories and important business documents for “misinformation” purposes (Their words not mine) SO GET YOUR 1TB FREE CLOUD STORAGE, AND FIGHT BACK AGAINST THE FASCISTS.

Enough of the depressing corrupt politicians surpressing your right to privacy. You can share important documents and pictures the same way you can with Google drive or Apple cloud. You can download your Twitter, Tik Tok, Instagram etc. videos straight to your cloud storage. You can even view everything from your cloud storage. Here’s the proof. Here is a link and video being played from the free 1TB storage app, it’s a video of your slut vp kamala Harris drunk at her press conference. You think Google would keep that video on their cloud storage service?

Download and watch kamala Harris drunk at her press conference
You can also do remote downloads meaning you can directly download files from the internet or Bluetooth. Neither Google nor Apple have those features (Apple does but it ain’t free).

You can see, it’s just as capable as Google, and they won’t delete “unpopular” videos. More information about your free 1TB storage.

Imagine that you are taking pictures with your family in front of your home, when suddenly a natural disaster, a tornado, earthquake, or a hurricane comes and destroys everything. EVERYTHING.
Thankfully, your family is safe in the aftermath. Then you want to recover some cherished memories or banking documents needed for getting access to your money. Suddenly, you realize Google or Apple close your account because they didn’t like the fact you posted that a 3 year old is too young to decide that they are transgender. (Think they won’t? Youtube censors everyone not about Marxism and socialism. Youtube is owned by racist Google. )
thankfully you have your 1tb storage that doesn’t discriminate under any circumstances,so you can recover everything from your backups. SO PROTECT YOUR LEGACY AND BANK ACCOUNTS.

[eafl id=”252″ name=”2 free terabytes” text=”Get 2 extra storage”]
You know you can also earn 2 more terabytes of storage for free if you are broke like me. Click here (or press if you are on mobile) to find out more.

logo. Get 3 tb of storage here.

Python 3 basics

revised due to me forgetting to add branching and if statements. probably add more stuff in the future.

I first want to start off by this post is more of a reminder for myself, than a tutorial. I like to plan just in case for whatever reason, I forget how python works, I want to have a reference for me, by me. It doesn’t have to make sense to you but whatever. Take it or leave it.

I will also include a link to an online compiler. I am sure that there are libraries for me to use that can create an online compiler, or if not, since this website is powered by WordPress, and Minimally python, I’ll figure something out and update the post if no other solution is added to this blog page.

below is a sample from a python script, ran in PHP to be output in a WordPress shortcode, thus a successful integration of python3 into a WordPress shortcode being utilized as a display end for python3. Youtube-dl is a python library. This is proof of python being called from WordPress PHP.

[python_test]

IDE TEST

You Dun’ Fked up naow!

type in the box print('racist liberals') and click the compile button

too lazy to work on security for ide so doing kode from trinket.io

if you did it right, the output should be “racist liberals”. see?
 

Try out to your heart’s content

see? it’s easy to get started with python.

Now. Onto the hard part.

Setting up python

Now, to get python on your computer, you will need to go to the python website and download it. You could also download pydroid 3 from the google play store on android phones, and also use that.

If you have a windows computer, you would download the exe or MSI file, and run it. Follow the instructions and after it says it installed successfully, you can run python, or use the companion ide (IDLE I think it’s called.) or use the bash shell to type it in.

If you use MacOS, since apple sucks in general (more than you think, less than it should), download the dmg file and follow the instructions. I ain’t doing shit about apple or anything.

If Linux is your operating system, then you chose well young padawan (star wars. It sucks now. RIP STAR WARS). But this method will be a little bit more involved. Examples will be from Linux lite os I use. It uses Debian and ubuntu so there are means of installing python. Linux comes by default with python so if you want to upgrade your python version, more or less what it involves, then this instruction set is the way to go.

Generally, you will be given the tar.xz compression file extension (.zip in windows compressed files) and will need an extraction software to open. What I did was create a program files directory to organize my software like on windows and extracted all of that there, but you can extract where you want to.

I am going to do a copy/paste of the readme.rst file that should come with it. In case for whatever reason you can’t parse it ( you can check python website, stack exchange, or even github as python is open source) so when you type in the following, you would need to use a terminal, or sometimes it’s called terminal emulator. It’s to linux what the bash shell is to windows, just a terminal interface.

On Unix, Linux, BSD, macOS, and Cygwin::

./configure
make
make test
sudo make install

This will install Python as ``python3``.

You can pass many options to the configure script; run ``./configure --help``
to find out more. On macOS case-insensitive file systems and on Cygwin,
the executable is called ``python.exe``; elsewhere it's just ``python``

While you can install with optimizations, we will skip for now, and you shouldn’t run into any problems. You can use a text editor to write python code, but I recommend vs code. They call it a IDE (or integrated developers environment) and I have developed my own, use vim via terminal or even edit from my mobile android (via PyDroid 3) but I am well in the years and mastered engineering, so for you, I would recommend using vscode (even though bill gates is a bigot, and Microsoft sucks) starting off. If you use windows you can use both vscode or visual studio. Linux you just use vscode. I ain’t going no more into it. Find out for yourself.
When you type in `sudo make install` and it finishes, it would make your `python3` version to the most recent version. As of 09-26-2021, you shouldn’t need to upgrade your standard Linux OS python to follow the tutorial, but this is only if for some reason, you don’t have python on your Linux machine, or you want to upgrade from python 3.8.5 to 3.9.7. Refer to the readme from the python or github python page (use duckduckgo (or racist google)) for more information.

Getting started

Your python scripts are going to end with a .py extension so if you decided to do a hellopy file, you naturally would save it as hellopy.py. If this is a challenge, please get basic computer usage courses, all free on sexist youtube. Other than that, lets proceed with breaking down a python script.


import os #importing libraries for additional functionality, from basic outputs to hell a fucking game engine

_01_dis_is_a_variable = "variable" # variable is a container for data. variables cannot begin with a number unless there is an underscore that comes before, and you cannot use a reserved keyword (more on that later)

def _test_function(parameter): #function subroutine is what you use to bundle a set of codes to call in sequence whenever called
print(parameter)
return parameter #return keyword would return the data as given. more later as full understanding will not be expressed in this comment
#by the way this is a comment. comments are not red or executed in the code. It is a placeholder or you use it to
#communicate which each variable, sequence, function etc. does. Just think of taking notes.

_test_function(_01_dis_is_a_variable) #this is calling the function which should print "variable"

stolen from duckduckgo

The basics that I had started off with are in this area of expertise. Don’t worry its not over yet. so expect more training. Keep reading if you don’t believe me. Go ahead, don’t listen to the guy that integrated python 3 into usage for WordPress as a plugin module, written in PHP, so that includes HTML5 (not really a programming language), PHP, CSS3, Javascript, AJAX, and Python, and integrated into this single blog post. Sure don’t listen to the guy that managed that feat. Good luck wasting 3 years to learn things that at the most took me maybe at most 3 months for full comfort. You do you, booboo.

For the rest that decided to proceed, I will break down what each means and how it will evolve. Ready? too bad. Since I can’t safely get laid, you gotta suffer! I would go onto the playstore and utilize sololearn, udemy, eduonix, edx.org etc. Training is free, and mobile apps are designed carefully to keep you engaged. If I could collect affiliate links for people to bring them in, I would be making even more money. But you’re here, so I will not waste your time. Let’s proceed.

imports and variables

Well since you will be using variables throughout your code, we will need to discuss it. In a simple explanation, variables are described as containers for storing data values. Try to think of variables as placeholders for data. there are many reasons to use them. They can help the programs you would write to become more flexible. A variable is used to allow the programs you write to refer to a variable’s value in one location, instead of having to type out the values you would need. As I said before for the slower Kidz in the back, as rules for naming a variable, you don’t want variables to conflict with function names or reserved keywords, and since you cannot start a variable name with a number (unless an underscore ( _ ) is inserted before the number i.e. _01_data_var. Also another rule to keep in mind that with upper and lowercase letters in a variable name, They are interpreted as different variables so for example, _01_Variable, _01_variable, _01_VARIABLE, _01_VariaBle are all different variables. so you cannot use _01_variable as a substitute to _01_Variable, unless you code it that way, but we won’t get into that for right now. It’s better to understand as things go along.

In Python, there is no command for declaring a variable. Other programming languages can have a syntax that you need to specify before naming a variable. In javascript, to set a variable, you would need to set “var” before the variable name ie, var _x = 22; var VARIABLE = “the variable”.The variables are created as soon as you assign a value to it.

In Python, variables don’t need to be declared with any specific data type. But another thing to keep in mind is that variables can change the variable in question’s data type after they have been set, so be careful and keep this fact in mind.

print = print("Uh oh!") #Will cause an error and can cause your program to break

This will cause an error as you tried to name a variable after a reserved function. There are ways of doing that, but this way, will cause errors. Witness how these things work, few examples of what to do, and what not to do.

exampleVar = 55
print(exampleVar)

The example below is not a valid datatype, and this will cause an error. You would need to throw quotes around the string.

cannotDoThisCrap = HeyFucker!

Try:

canDo = "HeyFucker!"

Hell, you are able to store the result of a calculation to a variable.

For example:

canpop = 5/4
print(canpop)

You can set functions as well, but not reserved functions, nor keywords.

Try the examples below:

Got it? good! now we can move on….

imports

Code written in python, is organized in modules & packages. On the Python.org website, it states that the definition of module is an object that serves as an organizational unit of Python code. Modules have a namespace containing arbitrary Python objects. Modules are loaded into Python by the process of importing. When implemented, a Python module is usually one .py file containing Python code. The magic of this tho’, is that modules can be imported and reused in other code. For example…

import math
print(math.pi)
# should output 3.141592653589793

on the import math part, you end up importing the code in the math module and make it available to use in your script. The second line which has math.pi inside the print function parameter, this is where the “pi” in the math module you can access. Pi is the variable in the math module. Since the math module is part of Python’s standard library, you can import it anytime you need. Also to note for the slow kids in the back, modules can act as a namespace that will keep all the attributes of the module together. Namespaces are used for keeping your code organized and in most cases, readable.

Packages are different. In the relevancy to it all, modules generally are composed of only one py script, and packages have many scripts, and sometimes can also depend on a binary executable, and be located in it’s own directory.
A package is still a module tho. To create a Python package yourself, you create a directory and a file named __init__.py inside it. The __init__.py file contains the contents of the package when it’s treated as a module. It can be left empty if need be. Directories can be treated as packages without an __init__.py file. However, these aren’t regular packages, these are known as namespace packages. I’m sure if you kept up this long, you’ll figure it out later.

try this below:

# Import math Library
import math

# Print the value of pi
print (math.pi)

Functions

Functions are more or less a block of organized, reusable code that is used to perform a single, string of actions. Functions generally provide better readability, and generally provide a good portion of code reusing.
Take for example that python gives you many built-in functions like for the damn print(), etc. but you can also create your own functions call it fucks for all I care. These functions are referred to as “user-defined functions”.
As you know, functions can be defined to provide the required functionality. Here are some of the fucking rules to follow when your lame ass define a function in Python:

Function blocks begin with the keyword def followed by the function name and parentheses ( ( ) ). eg. “def _03_fuk_urself()”

Any input parameters or arguments should be placed within these parentheses. You can also define parameters inside these parentheses. eg. “def _02_eat_dirt(eeb, fap=”splash”)”

The code block within every function starts with a colon (:) and is indented. eg. def _24_somokz_zum_weed(strain): notice the colon

def _02_supa_drive(vroom, engine="vx"):
print(engine)
print(vroom)

The statement return [expression] exits a function, optionally passing back an expression to the caller. A return statement with no arguments is the same as return None.

def _982954_simp_husband(sucker="cuckold"):
return "I am".sucker.",And I deserve nothing but spit on my face, and disrespect, because I'm a pathetic simp"

Homework to do when you move to next section:

You can call a function by using the following types of arguments −

Required arguments
Keyword arguments
Default arguments
Variable-length arguments

Google (preferably duck duck go, since google is racist.) each of these arguments and test them out on this ide or the other IDEs.

[dngaifse_data]neet[/dngaifse_data]

Python while/for loops

I would honestly rather have the w3 schools explain it, as it is a source I have learned from and it’s simple-simple. I could say that you could type in x= 100 while x > 0: x -= 1, but there is more information on these loops. The W3Schools website here in this link has it’s own and simplified details on it’s site. Plus examples and break and continues and stuff. click here to learn interactively. Don’t like it? Go Fuck Yourself! I’m not about to make it easy for you. You wanna be a python programmer? Take this “Homework” and swallow some knowledge, faggot. Do your research, punk! You lucky I left the link above for you to use to get a headstart. You wanna learn to make a game loop? the while loop is fundamental. so yea. This section will be homework for you. You learn this on your own, entitled ass butt snob!

Moving On….

Python classes

, Think of classes as a structure for a datatype. A blueprint if you will. For example standard datatypes include int, double, float, boolean, etc. Creating a class can be thought of as a “Blueprint structure of a custom datatype”. Since I am lazy, I am going to webscrape this section from tutorials point from directly off their website. Their website link is at the bottom if you don’t believe me. Follow the link. See for yourself I got lazy. I can be a lazy coder cause I gots skills. These are the basics you need. If you have questions, Google (or duck duck go) stack overflow and type your question in the search box.

[python_class_page_data]

TEST YOUR MIGHT

just have fun with this environment. You can’t save scripts but you can practice your python skills here. You don’t have to leave this page until you at least have a good idea of python works, then you can go ahead and get those independent certs online instead of going to a sexist college/ ivy league school. They heavily discriminate against men and boys.

Another lie told by society “M.G.T.O.W are Incels”

First off, this is slander. But society says that men who go MGTOW and become ( or start to become) the best version of themselves, without the restraints and heartaches of relationships/marriages holding them back, are misogynists. Never explaining how, besides presenting the facts as to why even saying “hello” to a woman has more of a potential to earn him some bogus jail time. Don’t pass go, Don’t collect $200 dollars. However, naysayers and detractors, generally have no arguments to present during a debate, and no one has successfully been able to provide more benefits to a guy in a relationship as opposed to the stacks of the liabilities that come with each relationship/marriage. As a result, due to this, the destroyed society presented today resorts to censorship, slander, and shaming tactics as a response.
It is acceptable (and even demanded) to shame a man for rejecting marriage/relationships, but completely unacceptable to point out a woman’s weight problem. (You’ll still be shown more mercy fat-shaming a child, than fat-shaming a female adult. Make that make sense…)
But no one cares about the plight of men and/or boys (more on this later). So this is what you have. Censorship and slander. Honesty is NEVER respected. Hell, the news doesn’t even report the facts anymore, just cover-ups for a fascist democratic government, and spineless conservatives that enabled this level of treason and crimes against humanity. But that’s none of my business. I became an engineer, and essentially went my own way. I can say it’s been close to a decade since I last been in any rigged relationships. I found peace and solace within myself, and became that person I can finally look at in the mirror, and sleep more peacefully ( more or less. Earth with annoying fire ants aren’t exactly 100% comfortable.) without the restriction of a one-sided relationship and/or marriage.

What society tells everyone about M.G.T.O.W

As you can see from this slander from Wikipedia (because it’s a lie. I don’t even use Wikipedia to check math formulas anymore. Cause to these soft spineless lying bigots math is racist), it goes on as follows…

Men Going Their Own Way (MGTOW /ˈmɪɡtaʊ/) is an anti-feminist, misogynistic, mostly online community advocating for men to separate themselves from women and from a society which they believe has been corrupted by feminism.[2] The community is a part of the manosphere, a collection of anti-feminist websites and online communities that also includes the men’s rights movement, incels, and pickup artists.[3]

Like other manosphere communities, MGTOW overlaps with the alt-right and white supremacist movements,[4] and it has been implicated in online harassment of women.[5] The Southern Poverty Law Center categorizes MGTOW as a part of the male supremacist ideology.[6]

As a black man, who as gone his own way, I can say with honesty, BS. I will have to break down why…

  1. is an anti-feminist, misogynistic, mostly online community advocating for men to separate themselves from women and from a society which they believe has been corrupted by feminism.
  2. Funny thing that is. Women, in general, have been corrupted by feminism. The #meToo backlash? How about the total rejection of #MenToo? Society treats men like crap, to the point other men treat men horribly and believe a man’s role is just what he can provide to her, society, and a democratic fascist government. Do you know why japan never had problems with false rape allegations? Because they “prosecute” women who lie about rape, and paternity fraud. Just about all of the western civilization encourages this horrible behavior from women. Do you know what a man who destroys a woman’s life gets? At the best, public shunning. What happens to a woman that destroys a man’s life? At the best, she gets a pat on the back, and a government check to encourage and incentivizes it. Feminism encourages lying about rape to destroy a man’s life. They encourage women to murder their children in front of the father because “My body, my choice”. They encourage destroying and falsely accusing a soon-to-be-ex-husband in divorce court, which family courts and the southern poverty law center have their own scandals as well as the family courts in general with their bias and snob-smug gas they spew out in the audio translations of “Best interest of the child(ren)” in other words, child support. But MGTOW men know that more feminism has its own way of destroying people’s lives. More men start to wake up from more weak men/selfish women or commit suicide. Those are usually the outcomes by “following the narrative”. Notice how men who separated from women, and society, ended up saving more money, doing more things (Hobbies, fun, career, business, etc..), and gained a happier life. How? You can’t possibly live life without a woman. Easy, because according to the divorce statistics dating back from 2012 to today, women file more, and guys get railroaded in family courts, and the guy is none the wiser. There are literally more safer and more productive things to do, than to pursue a woman, for a relationship/marriage.
    The difference between an MGTOW and an Incel?: MGTOW informs men that it’s in their best interests to NOT pursue a woman, and NOT to get involved in a relationship/marriage. Incels are angry women don’t pay attention to them. Generally, Incels shoot places up, MGTOW men, walk away, leaving pissed-off women, biased government, and a gynocentric society to burn in their own fire that they lit, and now demand that men put out. MGTOW men ignore women, Incels shoot women for rejecting them. Even the acronyms are different. MGTOW (Men going their own way), Incel (Involuntarily Celibate). Censorship and Slander. Wikipedia is now discredited as telling the truth. You soy boys keep it up. See how it works out for you. I’m going to move on to my next point….

  3. The community is a part of the manosphere, a collection of anti-feminist websites and online communities that also includes the men’s rights movement, incels, and pickup artists.

    While these are very different factions, and most of the time they do clash (With MGTOW being a common enemy), All of them are based on the foundations of the Red-Pill. If being Red-Pilled is seeing that society never valued any man, that women never loved men(even those in our families), and that no matter how hard a man fights for equality, he will sooner be driven to an early grave, than for his grievances to be heard, and addressed, Than MGTOW is only the idea that

    MEN ARE PEOPLE TOO

    But again, don’t confuse Incels with MGTOW. Incels need a woman to validate his existence, and when they pretend that he doesn’t exist because that incel doesn’t have deep pockets (as women do…) , he will shoot up a girls-only mall/school/slutty dorm as he is angry of the rejection. While many MGTOW men were rejected, they simply decided that the pain, and the suffering, and the hypocrisy isn’t worth the headache and decided to do something more productive. Playing video games in his parent’s basement, working at a fast-food job, is more productive than chasing women and/or relationships. Incels hate women for the rejection, MGTOW men, find better things to do than a woman. You can’t compare the two. Incels aren’t even Red-Pilled. They’d sell their souls to get laid as they need validation from a woman to justify their existence. (Oh! BTW if you are thinking I’m just some grown adult playing video games in his elderly parent’s basement because I can’t get women, I have a business to run, video games to make, a full-time job on top of that, and me and my whore of a mother both cut each other out of our lives. She’s toxic, a traitor, a backstabber, and I chose to live in the woods for 30 days. I have had two sets of mothers stab me in the back. Living with my mother again is not going to happen. I would rather starve to death, homeless, and dead in the street than to ever have either of those evil spirits back in my life. I would rather die of covid than to take a vaccine that racist, child-molesting Biden mandates us to take. Don’t think I won’t).



  4. Like other manosphere communities, MGTOW overlaps with the alt-right and white supremacist movements, and it has been implicated in online harassment of women. The Southern Poverty Law Center categorizes MGTOW as a part of the male supremacist ideology.

    BULLSHIT!!!!

    There is no alt-right involved, and white supremacists DON’T seek to wake up men of other races for anything. This is defacto bullshit by default. Women are not “harassed” by MGTOW men. Trolled (maliciously, and deservingly so) yes, but this is usually a response when a woman bullies a man. When women on social media, in general, say they would rather cheat on a good man, and still string him along because of his money, while more men are saying they just would settle for a hug from a woman who loves them, that warrants at the very least a trolling. But like this dude and the commentator learned (ITSAGUNDAM) That this also can have consequences.

    Take a look at this video, and see how women work hard on tinder to get with a “child molester”, because he has 6-8 pack abs, It’s a troll obviously, but to prove the heartbreaking point that hypergamy and female nature are very real things.

    If you watched the whole video without losing your faith in humanity, you get a 10% discount on a KVM virtual server

    And you want to go there with the Southern Poverty Law Center? Those intolerant bigots have been at war with men and the black community for a long time. Remember the article they wrote about how Thomas Ball responded to being ass-raped unfairly in family law, and being deprived of his children, for the only crime of being born a man, And their only concern was starting an uprising from men, because they know how rigged the system they helped rig is against men. Especially black men. Here is the link to the article below (Also marred with slander):

    Southern Poverty Law Center Hates Men (Black Especially)

    So now according to society, men going their own way, ignoring women, society, and a fascist government, is an act of hate and violence. With the whole world telling men that they’re worthless, and predators for no reason, and society has the nerve to blame, slander, and censor, and still wonder why men worldwide, are walking away in droves, which leads me to the next point…

Society would rather women get murdered, than to allow a man who has gone his own way, speak just about his own personal grievance

It’s become so sad that society would rather there be more incels shooting people up, than have men simply go far away from a fascist government, Society, and above all else, Women and relationships with them. Even Professional relationships are risky. The slander from Wikipedia says it all. I mean think about it. Why are men telling other men about what to expect from a relationship, and the government’s interference that is mandatory the minute a woman learns a man’s name, more dangerous than the message of feminism, who cheers women who abuse children and falsely accuse men of rape? The message of men responding to everything wrong in the world by walking away has to be censored, so that way the incels can continue to stew in their rage, instead of walking away altogether, and find everlasting peace, and self-respect.

They rather a stacking body count, than to shut down the narrative. So the censorship, the slander, and the shaming will continue all the way to the endgame. This will continue, and I will continue to post as it comes up. Stay single guys, and stay on your purpose. Remember, A guy that will save a group of kids from a burning building will be disrespected 10 times over by women, while women flock to a hunk of a child molesting badboy. Again, where is your god now?