Our creation is divided into two parts, the first is THOUGHTS, the second is ACTION. So whatever our actions must start from our thoughts So be careful with our thoughts If our thoughts are negative our actions will be negative too, If our thoughts are positive our actions will also be positive, Our mind is divided into two parts, the positive and the negative, there is a good part there is an evil part, We can’t condition our thoughts to be neutral, when we think positively the positive part of our brain will produce positive things and vice versa if you think negative then the brain will produce negative things
For example, before you go to sleep, you think that tomorrow you will do very tiring things, tomorrow I will be very tired, when we think so, our brain will automatically produce negative things then what happens is we will hate the sound of the alarm, our footsteps will be lazy to go to the bathroom, we hate the sound of the horn in the morning and we hate the people around us then what happens is according to what we expected.
But you can also think otherwise when you want to sleep you can say that tomorrow will be my day I will be excited, I will do all the work with enthusiasm, I’m very excited for tomorrow, then our brain automatically responds and produces positive things, then what happens is you don’t hate the sound of the alarm in the morning, even the sound of the horn is a boost for our adrenaline, you will smile to everyone Then what will happen is according to what we think, You don’t have time to hate because our thoughts are already producing positive things.
You will be the boss of your mind is just waiting for the command what you want it all depends on you, the brain is the same but what is different is the way of producing it, it all depends on which side you use your mind The right way of thinking will lead people to always think positively and always think systematically, Wrong way of thinking leads people to always think negatively and always think badly, You are the leader of all positive and negative thoughts,
You can’t create the world, but you can create your world all your world starts from your mind, So don’t let negative thoughts enter your mind, keep fighting to produce positive things, Nothing positive in this world comes from negative thoughts all negative things will not enter to our lives if we always produce positive thoughts, if you want to eat apples then you have to buy apples, you can’t eat apples if you buy bananas In other words, don’t expect a positive life if our thoughts are always negative.
Why your problem can’t be solved? maybe you talk too much and complain too much, You think your problem is bigger than other people even though their problems may be bigger than yours but they don’t talk too much and complain like you, what’s the point of you talking about your problems to other people, what’s the point of you writing your problem on social media, believe that other people are just curious about you not because they care about you.
When the problems are coming sometimes silence is better than explaining how you feel, because it will be very painful. After all, they can only hear your problems they can’t understand what your problem is and when you are angry what you have to do is “SILENCE”. After all, silence can prevent you from hurting other people’s hearts with your words. when you’re angry “SILENCE IS BETTER” than you say the words without meaning.
SILENCE is not a sign we don’t know, SILENCE also doesn’t mean we’re stupid but SILENCE means that you are mature, wiser, thinking which one is better for you and others. when the problem occurs be quiet for a moment hold your mouth to speak because talking when you are angry will only make the situation is worse, hold your finger to write on social media because writing status when you are angry what you will write is garbage and at that time you really need a place to complain because your head as if can’t control your problems anymore.
Whether telling your problem to others or making a status on social media can solve your problem? when the problem and anger come all you have to do is stop everything you do and “sit down” if you’re still angry too “lay down” but if still angry to “bow down” and pray to The GOD. big problems occur because of small problems that are not resolved and silence can’t solve the problem but at least silence can reduce it so it doesn’t make the problem bigger, it’s better to be silent but know what to do than talk but don’t understand what you’re talking about,
It’s better to be silent and be considered stupid instead of talking and trying to be considered smart, talking is better than silence but silence is better than talking, silence is better than talking nonsense and knowing too much, silence can make us listen more to what our hearts are saying, silence can make us enjoy the way we think because silence is sometimes better to represent the millions of pieces of our feelings that exist, it’s better to be silent than to speak inappropriately. silence is wise but when your wisdom is stepped on and not appreciated Talk and silence the others because silence is gold and speaking well is a diamond.
Support your favorite Spring 2022 Dota Pro Circuit (DPC) teams! Supporters Clubs are now available. Clubs include sprays, wallpapers, emoticons, voice lines and fantasy card packs. 50% of the revenue goes to the supported team. Another batch of teams will be coming soon! pic.twitter.com/OowDlAYfs0
DPC Supporters Club Sale Ready to make your Dota allegiances known? The homestretch of the season is here and it’s the perfect time to show your support. To make it even easier, from today until the conclusion of the DPC Winter Tour Regional Finals on February 20th, the Winter Tour Supporters Clubs are all on sale for half price. Make sure to support your favorite teams and help represent in force as you cheer for victory during the final fights.
DPC Fantasy Update The DPC Winter Tour Fantasy Dota has been updated to include an extra two-week-long period for the Regional Finals. Check out the new quick-access menu under the Watch Tab to see a summary of how you can interact with the DPC. Plus, for any players who have already participated in Fantasy, stay tuned for treasure rewards arriving before the start of the Regional Finals.
Changes to Co-Op Bots Matchmaking Mode Today’s update also includes some modifications to Co-Op Bots Matchmaking to help improve behavior around disconnecting and queuing in general. You can check out the changes below:
Leaver penalties no longer apply in this mode.
If a player disconnects, a bot will control their hero while they are absent.
Players can now queue for multiple selected difficulties and supported bot scripts simultaneously, instead of only individual selections for each.
If a player has been in the queue for Co-Op bots for more than 2 minutes, a match will immediately be made including any players that are in the queue. Empty player slots will be filled with allied bots.
Aghanim’s Labyrinth Update We’ve also included a small update with a number of bug fixes for the Aghanim’s Labyrinth game mode. Check out the patch notes for all the details.
Linux Runtime Update As part of our continuing efforts to move Dota’s technology forward, we have upgraded the Linux client to use the container version of the Steam runtime. This ensures better compatibility across distributions and prepares for future improvements.
Razer Opus headset froze, cannot hear anything, but the blue light is turning on, it didn’t react to any buttons, I could not turn it off, the noise cancelling was still on.
I had to wait for a day until the battery ran out, then recharged it. Since then, every time I put it in pairing mode, I hear the bleeps two times, and then it shuts off.
Solution
plug the included 3.5mm cable into the Opus, then Press and Hold Volume Up + Volume Down + Power Button at the same time.
Razer Opus – Black
Wireless THX® Certified Headphones with Advanced Active Noise Cancellation
US$199.99
THX® Certified Headphones
Advanced Active Noise Cancellation (Anc) Technology
This article helps me to fix git push to gitlab. It’s been a long time i didn’t to commit to gitlab 😀
remote: The project you were looking for could not be found or you don't have permission to view it. fatal: repository 'https://gitlab.com/josuamarcelc/myproject.git/' not found
MySQL has show full processlist; to see a list of currently running queries.
PostgreSQL has a similar shell like select * from pg_stat_activity;
1. Simple Command
select * from pg_stat_activity;
2. Second Option
SELECT user, pid, client_addr, query, query_start, NOW() - query_start AS elapsed FROM pg_stat_activity WHERE query != '<IDLE>' -- AND EXTRACT(EPOCH FROM (NOW() - query_start)) > 1 ORDER BY elapsed DESC;
3. Third Option
SELECT pid, age(clock_timestamp(), query_start), usename, query FROM pg_stat_activity WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' ORDER BY query_start desc;
4. Finding Long Processing Time / Stuck Queries
SELECT pid, now() - pg_stat_activity.query_start AS duration, query, state FROM pg_stat_activity WHERE (now() - pg_stat_activity.query_start) > interval '5 minutes';
Server DNS pertama rekomendasi adalah OpenDNS yang sudah sering digunakan oleh banyak orang karena mampu mempercepat akses internet di HP atau PC kamu. OpenDNS ini merupakan salah satu grup dari Cisco dan diklaim aman dan terpercaya. OpenDNS sendiri memiliki berbagai produk yang bisa kamu gunakan. Di antaranya adalah OpenDNS Family Shield dan Home yang bisa kamu gunakan secara gratis. Sedangkan VIP dan Umbrella Prosummer bisa kamu nikmati dengan langganan berbayar.
Keterangan
OpenDNS
Primary DNS
208.67.222.222
Secondary DNS
208.67.220.220
Primary DNS (IPv6)
2620:119:35::35
Secondary DNS (IPv6)
2620:119:53::53
OpenDNS
Cloudflare DNS
Selanjutnya adalah Cloudflare DNS yang merupakan server DNS yang diklaim paling cepat di antara lainnya. DNS yang dibuat oleh kolaborasi Cloudflare and APNIC ini akan memberikan pengalaman berselancar internet yang lebih maksimal. Kamu yang tak mengerti cara mengganti DNS, bisa mengunduh aplikasi Cloudflare DNS secara gratis. Cloudflare DNS akan membantu kamu untuk browsing secara aman. Sehingga tidak ada orang lain yang bisa mengetahui sejarah internetan kamu. Tak hanya itu, Cloudflare DNS memiliki kecepatan 14,96ms yang sangat cepat.
Keterangan
Cloudflare DNS
Primary DNS
1.1.1.1 1dot1dot1dot1.cloudflare-dns.com
Secondary DNS
1.0.0.1
Primary DNS (IPv6)
2606:4700:4700::1111
Secondary DNS (IPv6)
2606:4700:4700::1001
Cloudflare DNS
Google DNS
Google DNS juga menjanjikan kamu kecepatan browsing yang lebih cepat serta melindungi kamu dari berbagai macam virus dan hacker. Tak berhenti di situ ada juga fitur anti-redirection.
Keterangan
Google DNS
Primary DNS
8.8.8.8
Secondary DNS
8.8.4.4
Primary DNS (IPv6)
2001:4860:4860::8888
Secondary DNS (IPv6)
2001:4860:4860::8844
Google DNS
Quad9
Quad9 ini memiliki fitur yang dapat mempercepat pengalaman kamu dalam berselancar di internet. Selain itu, Quad9 juga akan mengamankan akses kamu di internet. Quad9 ini bekerja sama dengan perusahaan besar seperti IBM, Packet Clearing House, dan Global Cyber Alliance. Tak hanya itu, Quad9 setidaknya memblokir 10 juta akses jahat terhadap penggunanya.
Keterangan
Quad9
Primary DNS
9.9.9.9
Secondary DNS
149.112.112.112
Primary DNS (IPv6)
2620:fe::fe
Secondary DNS (IPv6)
2620:fe::9
Quad9
Verisign
Verisign ini bisa kamu coba karena memiliki konektivitas yang stabil dan aman dari berbagai bahaya di internet. Kamu bisa menggunakan DNS ini di berbagai perangkat kamu seperti PC, HP maupun tablet kamu. Verisign juga mengklaim tidak akan mencatat dan menjual data public DNS kamu ke pihak ketiga. Selain itu, DNS ini juga tidak akan memberikan kamu iklan apapun saat berselancar di internet.
Keterangan
Verisign
Primary DNS
64.6.64.6
Secondary DNS
64.6.65.6
Primary DNS (IPv6)
2620:74:1b::1:1
Secondary DNS (IPv6)
2620:74:1c::2:2
Verisign
CleanBrowsing
CleanBrowsing ini adalah DNS terpercaya yang memiliki beragam fitur menarik untuk membantu kamu berselancar di internet secara maksimal. DNS ini memiliki tiga jenis filter yang bisa kamu pilih, di antaranya adalah Family Filter, Adult Filter, dan Security Filter. Masing-masing memiliki fitur yang menarik. Family Filter akan memblokir sejumlah konten dewasa serta memblokir akses VPN. Filter ini cocok digunakan untuk anak atau saudara kamu yang masih kecil. Adult Filter ini sama dengan family filter, tapi VPN tetap bekerja. Sedangkan, Security Filter hanya akan memblokir segala bentuk spam, pishing, dan serangan malware.
Keterangan
CleanBrowsing
Primary DNS
185.228.168.9
Secondary DNS
185.228.169.9
Primary DNS (IPv6)
2a0d:2a00:1::2
Secondary DNS (IPv6)
2a0d:2a00:2::2
CleanBrowsing
AdGuard DNS
Terakhir dalah AdGuard DNS yang bisa memberikan kamu fitur untuk memblokir berbagai macam iklan di perangkat kamu. Tak hanya itu, DNS ini juga akan menjaga privasi kamu saat browsing. AdGuard DNS juga bisa kamu gunakan sebagai proteksi HP dari konten dewasa agar anak bisa menggunakan gadget secara aman. DNS ini bisa kamu gunakan tanpa harus menggunakan aplikasi.
Keterangan
AdGuard DNS
Primary DNS
176.103.130.130
Secondary DNS
176.103.130.131
Primary DNS (IPv6)
2a00:5a60::ad1:0ff
Secondary DNS (IPv6)
2a00:5a60::ad2:0ff
AdGuard DNS
Level3
Level3 otomatis akan menyambungkan ke server DNS terdekat dari posisi kamu. Koneksi internet lebih stabil dan bisa untuk membuka situs yang diblokir.
Keterangan
Level3
Primary DNS
209.244.0.3
Secondary DNS
209.244.0.4
Level3
Comodo Secure DNS
Comodo Secure DNS memberikan koneksi yang cepat dan aman untuk menjelajahi internet. Lebih cepat karena Comodo Secure DNS menggunakan server terdekat dari posisi kamu. Lebih aman karena Comodo Secure DNS menyaring situs berbahaya yang mengandung malware, phising dan lain-lain. Dan yang lebih penting lagi, bisa untuk membuka situs yang diblokir.
Keterangan
Comodo Secure DNS
Primary DNS
8.26.56.26
Secondary DNS
8.20.247.20
Comodo Secure DNS
DNS.Watch
DNS.Watch server terletak di negara jerman jadi jika digunakan di indonesia akan mempengaruhi kestabilan koneksi internet kamu. Tetapi bisa digunakan untuk membuka situs yang diblokir.
Berikut catatan saya IP DNS PING Via Mikrotik: Indosat 202.155.0.10 ttl 55 time 9-11ms 202.155.0.15 ttl 55 time 10ms 202.155.0.20 ttl 55 time 10-11ms 202.155.0.25 ttl 245 time 10-22ms 202.155.46.66 RTO 202.155.46.77 RTO 202.155.30.227 RTO
Gambar Screenshot Ping IP DNS Indosat via Winbox
IP DNS Telkom 202.134.0.62 9-10ms sip ttl 59 202.134.1.10 19-20ms ttl 59 202.159.32.2 9-15ms v x 58 202.159.33.2 9-10ms ttl 58 202.134.0.155 9-35ms ttl 58 203.130.208.18 nssmg1.telkom.net.id 28-30ms
Gambar Screenshot Ping IP DNS Telkom via Winbox BINUS 202.58.181.18 avg 10ms AWARI (Asosiasi Warung Internet Indonesia) 203.142.83.200 TTL 55 time 12-13ms 203.34.118.10 (primary) 57 time 10-12ms 203.34.118.12 (secondary) time 10-23ms Sat.net.id 202.149.82.25 TTL 54 time 9-12ms 202.149.82.29 TTL 54 time 9-21ms cbn.net.id 202.158.40.1 TTL 55 time 9-13ms 202.158.20.1 TTL 54 time 9-13ms 202.158.3.7 (primary) 55 time 9-10ms 202.158.3.6 (secondary) 55 time 9-20ms indo.net.id 202.159.32.2 TTL 58 time 9-10ms 202.159.33.2 TTL 58 time 9-10ms ukdw.ac.id 222.124.22.18 TTL 59 time 19-29ms Lintas Artha 202.152.0.2 (primary) 56 time 9-12ms 202.152.5.36 (secondary) RTO Singnet 165.21.83.88 TTL 54 DNS Nawala DNS #1: 180.131.144.144 TTL 58 time 10-14 DNS #2: 180.131.145.145 TTL 57 time sering RTO XX
Update
DNS Server di Indonesia
Server DNS indosat.net.id termasuk DNS Indosat IM2
Iptables is a firewall, installed by default on all official Ubuntu distributions (Ubuntu, Kubuntu, Xubuntu). When you install Ubuntu, iptables is there, but it allows all traffic by default. Ubuntu comes with ufw – a program for managing the iptables firewall easily.
Reject Specific IP in iptables
sudo iptables -I INPUT -s 111.111.111.111 -j DROP
Show IP List in iptables
iptables -L INPUT --line-numbers
Chain INPUT (policy ACCEPT)
num target prot opt source destination
1 DROP all -- 111.111.111.111 anywhere