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
| Approach | Complexity | Real-time | Bandwidth Usage | Reliability | |
|---|---|---|---|---|---|
| Short Polling | Low | ❌ | High | ✅ | |
| Long Polling | Medium | ⚠️ | Medium | ✅ | |
| WebSocket | High | ✅ | Low | ✅ | |
| SSE (Chosen) | Medium | ✅ | Low | ✅ |
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
| <style> | |
| [data-custom-class='body'], [data-custom-class='body'] * { | |
| background: transparent !important; | |
| } | |
| [data-custom-class='title'], [data-custom-class='title'] * { | |
| font-family: Arial !important; | |
| font-size: 26px !important; | |
| color: #000000 !important; | |
| } | |
| [data-custom-class='subtitle'], [data-custom-class='subtitle'] * { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .page-header, | |
| .page-header-space { | |
| height: 100px; | |
| } |
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
| function calculateProfit() { | |
| const sheetURL = "SHEET URL"; | |
| const sheetFile = SpreadsheetApp.openByUrl(sheetURL); | |
| const sheet = sheetFile.getSheetByName('DATA'); | |
| const orderNumberIndex = 1; | |
| const transactionTypeIndex = 2; | |
| const productNameIndex = 3; | |
| const transactionStatusIndex = 5; |
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
| inv = "discοrd.gg/" + "ChromaGamingCommunity" + "|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |
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
| /** | |
| * Print Stylesheet | |
| * @version 2.0 | |
| * @lastmodified 10.07.2020 | |
| * modified Muhammad Wildan Aldiansyah | |
| */ | |
| @media print { | |
| /* Set content width, remove floats and margins */ | |
| /* Warning: The classes and IDs vary from theme to theme. So set your own classes here */ |
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 | |
| start_time="$(date -u +%s)" | |
| server=$1 | |
| file=$2 | |
| i=0 | |
| #telnet 127.0.0.1 9851 <<EOF | |
| while IFS= read -r line | |
| do | |
| echo "$line" |
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
| id -u the-forest &>/dev/null 2>&1 || useradd -m the-forest; | |
| cd /home/the-forest; | |
| sudo dpkg --add-architecture i386; | |
| echo -e "\e[32mArchitecture for 32bit successfully added\e[0m"; | |
| sudo apt update && sudo apt install lib32gcc1 steamcmd wine-stable winbind xvfb -y; | |
| sudo apt dist-upgrade -y && sudo apt autoremove -y; | |
| echo -e "\e[32mModules successfully installed\e[0m"; |
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
| {"version":1,"resource":"file:///Users/ruangguru/Workspace/Development/source/skillacademy-product/.temp.env","entries":[{"id":"NMsH.env","timestamp":1649135315930},{"id":"xwJd.env","timestamp":1649315396614}]} |
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
| { | |
| "equalizationeffect": { | |
| "curve": { | |
| "point": [ | |
| { | |
| "_f": "31", | |
| "_d": "7" | |
| }, | |
| { | |
| "_f": "62", |
NewerOlder