Skip to content

Instantly share code, notes, and snippets.

View wisnubaldas's full-sized avatar
🐢
Focusing

wisnu baldas wisnubaldas

🐢
Focusing
View GitHub Profile
@wisnubaldas
wisnubaldas / README.md
Created April 11, 2025 06:39 — forked from Anonimous05/README.md
Free Activation Code for JetBrains Products

My greetings, for everyone.

How to activate any JetBrains products with 3.jetbra.in?

First we need to visit this website

https://3.jetbra.in

Click the first link with Online status, by default is ipfs.io

Screenshot 2024-12-28 at 19 22 31

An guide how to activate Windows 11 Pro for free

Why?

Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet

Am i also able to switch from any other edition to Pro?

The answer is yes! You can switch from almost any edition to Pro completely for free!

Note for users with unactivated Pro edition

People which already have Pro, but not activated, can skip to this step.

Getting started

What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:

@wisnubaldas
wisnubaldas / all-cron.sh
Created September 13, 2024 03:10
Show Cron all user
#!/bin/bash
# System-wide crontab file and cron job directory. Change these for your system.
CRONTAB='/etc/crontab'
CRONDIR='/etc/cron.d'
# Single tab character. Annoyingly necessary.
tab=$(echo -en "\t")
# Given a stream of crontab lines, exclude non-cron job lines, replace
@wisnubaldas
wisnubaldas / keyup-delay1.js
Created August 19, 2022 02:45 — forked from Kcko/keyup-delay1.js
jQuery - keyup with delay (timeout)
var delay = (function(){
var timer = 0;
return function(callback, ms){
clearTimeout (timer);
timer = setTimeout(callback, ms);
};
})();
$('input').keyup(function() {
@wisnubaldas
wisnubaldas / bookmarks-2022-07-03.json
Created July 3, 2022 11:13
bookmarks-2022-07-03.json
{
"guid": "root________",
"title": "",
"index": 0,
"dateAdded": 1637236261539000,
"lastModified": 1656846547357000,
"id": 1,
"typeCode": 2,
"type": "text/x-moz-place-container",
"root": "placesRoot",
@wisnubaldas
wisnubaldas / Kerong.py
Last active June 14, 2022 08:20
get status and open lock
import socket
import sys
import codecs
class Kerong:
def __init__(self, ip, port):
self.ip = ip
self.port = port
# Create a TCP/IP socket
@wisnubaldas
wisnubaldas / profile.md
Created June 14, 2022 04:58
my_profile

Wisnu Hidayat

wisnu baldas

<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
class WbiBaruController extends Controller
{
import socket
import sys
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Connect the socket to the port where the server is listening
server_address = ('192.168.123.49', 5000)
print(sys.stderr, 'connecting to %s port %s' % server_address)
sock.connect(server_address)
@wisnubaldas
wisnubaldas / dropzone.php
Created February 20, 2022 15:55 — forked from kreativan/dropzone.php
Upload files with dropzone.js and php
<?php
// process $_POST request
if(isset($_POST["submitDropzone"])) {
// Do something
print_r($_POST);
}
?>