• Jan 9, 2026 •CodeCatch
0 likes • 1 view
{ "bindAddress": "", "bindPort": 2001, "publicAddress": "", "publicPort": 2001, "a2s": { "address": "0.0.0.0", "port": 17777 }, "rcon": { "address": "0.0.0.0", "port": 19999, "password": "fobarma1234!", "permission": "admin", "blacklist": [], "whitelist": [] }, "game": { "name": "[NA1] FOB Arma | Arland Game Master | fobarma.com", "password": "", "passwordAdmin": "fobarma1234!", "admins": [ "76561198054239558", "76561198097176793", "76561198968225358", "76561199833357392", "76561198073098171" ], "scenarioId": "{2BBBE828037C6F4B}Missions/22_GM_Arland.conf", "maxPlayers": 128, "visible": true, "crossPlatform": true, "gameProperties": { "serverMaxViewDistance": 2500, "serverMinGrassDistance": 150, "networkViewDistance": 1500, "disableThirdPerson": true, "fastValidation": true, "battlEye": true, "VONDisableUI": false, "VONDisableDirectSpeechUI": false, "VONCanTransmitCrossFaction": false }, "mods": [ { "modId": "595F2BF2F44836FB", "name": "RHS - Status Quo" } ] }, "operating": { "lobbyPlayerSynchronise": true, "joinQueue": { "maxSize": 50 } } }
• May 30, 2025 •kimdylan05-04cd
refre
• Jun 1, 2025 •abeRodrz99
0 likes • 3 views
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> </body> </html>
• Sep 27, 2024 •popeyevn
alert('123');
• Oct 31, 2021 •aedrarian
##README: Rename file to "data" (no extension) and delete this line 4 4.55 5 5.70 6 6.80 7 7.95 8 9.10 9 10.20 10 11.35 11 12.50 12 13.60 13 14.75 14 15.90 15 17 16 18.15 17 19.30 18 20.40 19 21.55 20 22.70 21 23.80 22 24.95 23 26.10 24 27.25 25 27.80 26 28.95 27 30.10 28 31.20 29 32.35 30 33.50 35 39.15 40 44.80 45 50.50 50 55.60 60 67 70 78.30 75 83.45 80 89.10 90 100.45 100 111.25 125 139 150 166.85 200 222.50
• Mar 12, 2026 •prakhar.dev101-263b
class Solution { public: bool isGoodLength(int len, string& s) { } string longestPalindrome(string s) { int l = 1; // a string of length 1 can always be a pallindrome int r = s.length() + 1; // it is impossible to find a string of length s.length() + 1, leave alone pallindromic while(r > l + 1) { int mid = l + (r - l) / 2; if(isGoodLength(mid, s)) { l = mid; } else { r = mid; } } } };