Skip to content

Instantly share code, notes, and snippets.

View maufirf's full-sized avatar

maufirf maufirf

View GitHub Profile
@maufirf
maufirf / cyberpunk_2077_review.txt
Last active December 17, 2020 16:46
My review on Cyberpunk 2077. Since Steam don't allow long reviews, I put the complete version of it in this gist. Here is the link to my steam review: https://gist.github.com/parampaa2/9474684c483ef3239a81f83ab87591f7
[h1][b]Warning:[/b] Early Playtime Review[/h1]
[i](My story progression is only still in the beginning after prologue, where Johnny Silverhand just took home in our head.)[/i]
[b]Cyberpunk 2077[/b] is hands off my most favorite game this year, beating Borderlands 3 who got the first place since its release, and also Genshin Impact (which isn't a PC game, though I played it on PC, but it is still a game I like.).
[hr][/hr]
For now, I can only rate this game 85/100. Those score is relatively resulted based on my objective and subjective which will be listed down below. Anything that is mostly or heavily opinionated or really biased to my personal preferences will be tagged as [b][Op][/b]. If it is bug related, it will be tagged [b][bug][/b]. I will mostly only list stuff that does not came from the main story, as I am just started to play the story, can't review much about it. I will try my best to only list experiences that are not bound to different computer specs.
All of the below is reviewed no later th

Whoamisubbedto Terms of Service

Definitions

On this Terms of Service, some definitions will be referred in order to create less complicated terms which will be italicized in this Terms of Service

  • We (us, our) refers to the first party of this terms of service, Bottlemin Bots.
  • You (you, your) refers to you, a user, who reads this terms of service as the complying second party.
  • Web app is the site on https://whoamisubbedtoweb.herokuapp.com which is hosted at heroku.com.
  • Credentials are your information regarding your private data that may give us
  • Google is the third party who serve as the authenticator of your credentials that is being used on the web app, and also provide us information that is going to be loaded at the web app.

Whoamisubbedto Privacy Policy

Your privacy is important to us. It is Bottlemin Bots' policy to respect your privacy regarding any information we may collect from you across our website, http://whoamisubbedtoweb.herokuapp.com, and other sites we own and operate.

We only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.

We are only retaining collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorized access, disclosure, copying, use or modification. By our technical implementations, the time we only retain your collected information is when you are actively accessing the site and discarded after you decide to leave the site technically (i.e exiting the browser that opens the site). Our

%--------------------
% Packages
% -------------------
\documentclass[11pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage{gentium}
%\usepackage{mathptmx} % Use Times Font
\usepackage[T1]{fontenc} %https://tug.org/FontCatalogue/computermodern/
\usepackage{lmodern} %https://tex.stackexchange.com/questions/10706/pdftex-error-font-expansion-auto-expansion-is-only-possible-with-scalable
@maufirf
maufirf / okbeamer.md
Last active April 7, 2020 11:49
OK BEAMER

OK Beamer

This is the explanation on how do we appease our lecturer to use LaTeX Beamer.

Imagine if LaTeX is python. So what is Beamer to LaTeX? Beamer is a LaTeX class you can use to make presentation variation of LaTex you can understand it as if you are using Beamer on LaTex like using Numpy on LaTeX. But to get Beamer, you will need a package manager, think like installing numpy using pip. So, you need a pip for LaTeX. Overleaf, as the creator of Beamer, recommends TeXlive. I personally recommends MiKTeX, though. Confused which to choose? well, think TeXlife is Conda and MiKTeX is pip - both are package manager, but TeXfile specializes to include all possible LaTeX classes made by overleaf, yet Conda speicalizes to include all possible data science Python libraries.

========

Decide on how do you will use LaTeX

def atkchance(a,b):
return max(min(0.5 + ((a-b)/b),1.0),.0)
def newpower(a,b,astuple=False):
ans = (a+(0.5*b))/2
if astuple: return (ans,ans)
else: return ans
"""
Mensimulasikan 'rebutan' tiga daerah.
@maufirf
maufirf / HowTheFuckIWriteOS110Essays.md
Last active April 22, 2019 11:43
A help on the OS110 Exercism essay, ported from Discord.

1. PREPARE YOUR FILES

I assume you have finished 5 medium exercism challenges. Copy the folders into a separate folder, so it look like this (for example) :

5 completed exercises0

now, you have to delete the target folder in each of the folders, for example, in anagram folder above, the folder look like this:

Inside anagram folder

@maufirf
maufirf / EVENCOUNTER_README.md
Last active April 22, 2019 10:46
This is the example i've written in discord, just to demonstrate to you how an essay should look like.

Even Counter

The Problem

Even Counter is the problem where we are given positive integers inside a Vec, and we have to determine how many even numbers are inside the given Vec.

I am thinking that this problem can be solved by:

  • First, filter out the odd number from the Vec, so we only have even numbers left inside the given Vec,
  • Second, Calculate the length of the filtered length
  • Last, return that calculated value.
@maufirf
maufirf / kms.py
Created April 8, 2019 01:51
A python script that deletes itself from existence when executed.
from os import remove
from sys import argv
remove(argv[0])
@maufirf
maufirf / gist:d8f33e15d470cd9596e82d6c7993a075
Created February 17, 2019 10:34 — forked from sabarasaba/gist:3080590
Remove directory from remote repository after adding them to .gitignore
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master