This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ Epoch: 1 ] | |
| [ ---- Step 1 ---- ] | |
| Y: 0 | |
| F(Y): -1 | |
| w1: 0.1 -> delta(+0.00 -> 0.1): +0.10 | |
| w1: 0.1 -> delta(+0.00 -> 0.1): +0.10 | |
| b: 0.1 -> delta(+0.00 -> 0.1): +0.10 | |
| [ ---- Step 2 ---- ] | |
| Y: 0.1 | |
| F(Y): 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| char* decrypt(const char* cipher, int shift) { | |
| int len = strlen(cipher); | |
| char* result = (char*) malloc((len + 1) * sizeof(char)); | |
| for (int i = 0; i < len; i++) { | |
| char c = cipher[i]; | |
| if (c >= 'A' && c <= 'Z') | |
| result[i] = (c - 'A' + shift) % 26 + 'A'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo apt update | |
| sudo apt install -y docker.io haproxy | |
| if [ ! -e "index.php" ]; then | |
| sudo cat << EOF >> index.php | |
| <?php | |
| \$ip = "ip-here"; | |
| // display it back | |
| echo "<h1>HTTP Load Balancing Lab</h1>"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "username": "Mamank Garox", | |
| "avatar_url": "https://qph.cf2.quoracdn.net/main-qimg-c2108cee7b7917f80d8f6182a7a0a8ee-lq", | |
| "embeds": [ | |
| { | |
| "title": ":zap: [ INFO ] Backend Update...", | |
| "color": 65352, | |
| "description": "- **Message**: MSG\n- **Time**: DATE\n- **URL**: ENDPOINT\n- **Docs**: [Swagger](ENDPOINT/docs)\n\n@Mobile Engineer " | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def iteration(n, x, H) : | |
| fn = [] | |
| print("Iterasi :") | |
| for i in range(n + 1) : | |
| fx = -(x ** 3) - (x ** 2) + (5 * x) + 3 | |
| print(f" f({x}) = -({x})^3 - ({x})^2 + 5({x}) + 3 = {fx}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| program TugasAnita_BubbleSort; | |
| uses sysutils; | |
| const | |
| ASCII_START = 65; | |
| type | |
| ArrayModel = array of integer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <ESP8266WiFi.h> | |
| #include <PubSubClient.h> | |
| #include <Servo.h> | |
| const char* ssid = "ssid"; | |
| const char* password = "password"; | |
| const char* mqtt_server = "mqtt_server"; | |
| WiFiClient espClient; | |
| PubSubClient client(espClient); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| wrong_creds() { | |
| clear; echo -e "[ \033[31mWRONG USERNAME or PASSWORD !!!.\033[m ]"; | |
| sleep 3; clear; | |
| } | |
| termux_security(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python3 | |
| # solusi kemageran tukang input data. Aowkwkwkwkwkkwk...... | |
| import os | |
| import sys | |
| import pandas as pd | |
| class autonik () : |
NewerOlder