Giter Club home page Giter Club logo

online-forever's Introduction

Online Forever

Make Your Discord Account 24/7 Online!



If you want to online tokens in bulk, consider checking out my store: phantom.sellix.io! ☄️
⭐ Feel free to star the repository if this helped you!

Disclaimer

By using this code, you are automating your Discord Account. This is against Discord's Terms of Service and Community Guidelines. If not used properly, your account(s) might get suspended or terminated by Discord. I, the developer, am not responsible for any consequences that may arise from the use of this code. Use this software at your own risk and responsibility. Learn more about Discord's Terms of Service and Community Guidelines.

This repository is in no way affiliated with, authorized, maintained, sponsored, or endorsed by Discord Inc. (discord.com) or any of its affiliates or subsidiaries.

Warning

DO NOT GIVE YOUR DISCORD TOKENS TO ANYONE.

Giving your token to someone else will give them the ability to log into your account without the password or 2FA.

Features

  • 🔒 Secure
  • Supports Custom Status
  • Account will stay 24/7 online (if you set it up correctly)
  • Supports all three status modes (Online, Idle, Do Not Disturb)
  • Can be used almost on any platform that supports Python

Obtaining Your Token (Video Guide)

You will need an user token inorder to use this code. You can obtain it by doing the following:

  1. Logging in to your discord account
  2. Pressing Ctrl+Shift+I to open Chrome Developer Tools
  3. Go to the Network Tab
  4. Keep it open and refresh the page
  5. Type /api in the filter search box
  6. Click the entry that has science as the Name
  7. On the sub-menu, go to Headers
  8. Scroll down till you see an entry named Authorization. Copy the line next to it.
  9. This is your token, DO NOT GIVE IT TO ANYONE.

Installation

· Replit

The code inside the repository was originally made to be hostable on Replit, but due to a recent ban on all repositories that are against Discord's ToS, you won't be able to import this repository directly to Replit anymore.

Here's a workaround to solve that issue:

  1. Click here to download the latest version of this code.
  2. Unzip the file
  3. Create a new Python repl on Replit
  4. Upload the files into the repl (Just drag and drop it into the files sidebar)
  5. Overwrite the files if a prompt pops-up
  6. Add your token inside Secrets (Guide) with TOKEN as the key and your token as the value (Video)
  7. Modify both the status mode and custom status, if you want to make any adjustments
  8. Run the repl
  9. Add your repl url to an uptime monitor (Video)

· Local Installation

  1. Install Python on your machine (Make sure you add it to PATH)
  2. Copy the code below
Click here to view the code, and click again to close it
import sys
import json
import time
import requests
import websocket

status = "online"

custom_status = "youtube.com/@SealedSaucer" #If you don't need a custom status on your profile, just put "" instead of "youtube.com/@SealedSaucer"

usertoken = "Add your token here"

headers = {"Authorization": usertoken, "Content-Type": "application/json"}

validate = requests.get('https://discordapp.com/api/v9/users/@me', headers=headers)
if validate.status_code != 200:
  print("[ERROR] Your token might be invalid. Please check it again.")
  sys.exit()

userinfo = requests.get('https://discordapp.com/api/v9/users/@me', headers=headers).json()
username = userinfo["username"]
discriminator = userinfo["discriminator"]
userid = userinfo["id"]

def onliner(token, status):
    ws = websocket.WebSocket()
    ws.connect("wss://gateway.discord.gg/?v=9&encoding=json")
    start = json.loads(ws.recv())
    heartbeat = start["d"]["heartbeat_interval"]
    auth = {
        "op": 2,
        "d": {
            "token": token,
            "properties": {
                "$os": "Windows 10",
                "$browser": "Google Chrome",
                "$device": "Windows",
            },
            "presence": {"status": status, "afk": False},
        },
        "s": None,
        "t": None,
    }
    ws.send(json.dumps(auth))
    cstatus = {
        "op": 3,
        "d": {
            "since": 0,
            "activities": [
                {
                    "type": 4,
                    "state": custom_status,
                    "name": "Custom Status",
                    "id": "custom",
                    #Uncomment the below lines if you want an emoji in the status
                    #"emoji": {
                        #"name": "emoji name",
                        #"id": "emoji id",
                        #"animated": False,
                    #},
                }
            ],
            "status": status,
            "afk": False,
        },
    }
    ws.send(json.dumps(cstatus))
    online = {"op": 1, "d": "None"}
    time.sleep(heartbeat / 1000)
    ws.send(json.dumps(online))

def run_onliner():
  print(f"Logged in as {username}#{discriminator} ({userid}).")
  while True:
    onliner(usertoken, status)
    time.sleep(50)

run_onliner()
  1. Create a new Python file and paste the code into it
  2. Modify both the status mode and custom status, if you want to make any adjustments
  3. Save the file
  4. Create a requirements.txt file and copy and paste the file contents inside requirements.txt without the Flask module
  5. Save the file
  6. Open command prompt where both the files are present and run pip install -r requirements.txt
  7. Once the packages are downloaded, either double-click the python file in order to run it or open command prompt where the python file is present and run python filename.py

Known Errors And How To Fix Them

[Discord] Status mode not changing

Click here to view the explanation and fix
Just wait for a few minutes. It takes some time for Discord to refresh your status.

[Replit] This repository could not be accessed, try again later/This repository possibly violates our Terms of Service. Contact support if you believe this is a mistake.

Click here to view the explanation and fix
As I mentioned before, due to a recent ban on all repositories that are against Discord's ToS, you won't be able to import this repository directly to Replit anymore. Follow this workaround to host the code on Replit.

[Replit] sh: line 1: python3: command not found

Click here to view the explanation and fix
You cloned it into a bash repl. Make sure you select "Python" from the languages list when you create the repl.

[Replit] Cloudflare Error/Temporarily banned from accessing Discord's API

Click here to view the explanation and fix
This happens because repls have Shared Public IP Addresses, and some Replit Users abuse the platform to spam (through self bots or nukers). Whenever Discord sees lots of invalid requests coming from a single IP address, it will use Cloudflare to temporarily block any incoming requests.

Fix:

  • Go to shell
  • Enter kill 1
  • Wait for the repl to reload
  • Run the repl again

[Replit] ModuleNotFoundError: No module named 'websocket'

Click here to view the explanation and fix
Run pip install websocket in the shell

[Replit] TypeError: WebSocket.__init() missing 3 required positional arguments: 'environ', 'socket', and 'rfile'

Click here to view the explanation and fix
Run pip install websocket-client in the shell

Help and Support

If you have any issues or doubts regarding this, feel free to contact me.


❤️ Online Forever is licensed under GNU General Public License.

online-forever's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

online-forever's Issues

Replit new pricing plan - Update Readme

Current situation

Replit has introduced a new pricing plan that no longer allows hosting Online-Forever for free. Is there an alternative to continue hosting Online-Forever for free?

Hey

Hey, is it okay to fork this and add support for multiple tokens?,

Help :)

Hello,
your script is working well on my pc.
But when i try to run on my cloud host, it's cannot run because there are a filter for website requests , https://discord.com is avilable in the whitelist but wss://discord.com is not in the whitelist.

Can u make a new project with using https:// requests?

Thanks :)

bruh

man is really selling a token onliner lmfao

error while running

it shows an error while running the code
the error is - "module discord not found" even if i try to run the code properly or in the correct manner, pleaase help me to find a solution to this problem, thank you

Issue?

The owner of this website (discord.com) has banned you temporarily from accessing this website.
Access denied | discord.com used Cloudflare to restrict access</title>
<meta charset="UTF-8"

Any suggestions?

Add way to set custom status

Why you deleted my issue, you could just close it as others do.

It's possible, I don't use it for bot account.

How to disable it?

How do you disable it the script? I re-ran it and it still makes it online.

uh help

main.py line 16 in module
username = userinfo["username"]
keyerror:username
exist status 1

Setting custom status

Hello ,
ı am using your script , it's working well but ı wanna set private status.
for example:
"Cats are lovely."

can u add this to script?

Password reset

After a few days of being online, discord disconnects the account and force a password reset. Any way to prevent this?

Token error

since few days it always says [ERROR] Your token might be invalid. Please check it again., and I don't know how to fix it. I tried different token and it is still now working

Not

Not working

My account Token dont work

Hey, have problems with my account token. Tryed with 2 different accounts but it always say "discord.errors.HTTPException: 401 Unauthorized (error code: 0): 401: Unauthorized"

`"C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\Scripts\python.exe" "C:/Users/Steven Arnold/PycharmProjects/SelfBot/main.py"
Traceback (most recent call last):
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\http.py", line 300, in static_login
data = await self.request(Route('GET', '/users/@me'))
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\http.py", line 254, in request
raise HTTPException(r, data)
discord.errors.HTTPException: 401 Unauthorized (error code: 0): 401: Unauthorized

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\main.py", line 30, in
client.run("Here is my Token!")
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\client.py", line 723, in run
return future.result()
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\client.py", line 702, in runner
await self.start(*args, **kwargs)
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\client.py", line 665, in start
await self.login(*args, bot=bot)
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\client.py", line 511, in login
await self.http.static_login(token.strip(), bot=bot)
File "C:\Users\Steven Arnold\PycharmProjects\SelfBot\venv\lib\site-packages\discord\http.py", line 304, in static_login
raise LoginFailure('Improper token has been passed.') from exc
discord.errors.LoginFailure: Improper token has been passed.
Exception ignored in: <function _ProactorBasePipeTransport.del at 0x0000025B4127FC10>
Traceback (most recent call last):
File "C:\Users\Steven Arnold\AppData\Local\Programs\Python\Python39\lib\asyncio\proactor_events.py", line 116, in del
self.close()
File "C:\Users\Steven Arnold\AppData\Local\Programs\Python\Python39\lib\asyncio\proactor_events.py", line 108, in close
self._loop.call_soon(self._call_connection_lost, None)
File "C:\Users\Steven Arnold\AppData\Local\Programs\Python\Python39\lib\asyncio\base_events.py", line 751, in call_soon
self._check_closed()
File "C:\Users\Steven Arnold\AppData\Local\Programs\Python\Python39\lib\asyncio\base_events.py", line 515, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed`

Tokens look like this (I changed some Characters and letter for Security Reason xD):

  1. "BfA4NTFyLPB0MTkxOTIyMTk8.GxmH9p.PmXFtwFWIlrGPnWhEZimxc24jpB"
  2. "mfa.Z7loRFVLgaXJ_rKvuidKp6oZu2i7FsBW5LAvhFOvPGpduSHwzn2YW32sgRBbKMqLH57_QrWOTFxAsPL1JKG"

Someone help me

PS C:\Users\sixpa\Downloads\Compressed\Online-Forever-main> python filename.py
Logged in as joshdun (274651796033634304).
Traceback (most recent call last):
File "C:\Users\sixpa\Downloads\Compressed\Online-Forever-main\filename.py", line 78, in
run_onliner()
File "C:\Users\sixpa\Downloads\Compressed\Online-Forever-main\filename.py", line 75, in run_onliner
onliner(usertoken, status)
File "C:\Users\sixpa\Downloads\Compressed\Online-Forever-main\filename.py", line 26, in onliner
ws = websocket.WebSocket()
^^^^^^^^^^^^^^^^^^^^^
TypeError: WebSocket.init() missing 3 required positional arguments: 'environ', 'socket', and 'rfile'
PS C:\Users\sixpa\Downloads\Compressed\Online-Forever-main>

Error in replit

I am getting this error in Replit and I am not getting online

 python3 main.py
 * Serving Flask app ''
 * Debug mode: off
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
 * Running on all addresses (0.0.0.0)
 * Running on http://127.0.0.1:8080
 * Running on http://172.18.0.29:8080
Press CTRL+C to quit
172.18.0.1 - - [11/Nov/2022 14:35:08] "OPTIONS * HTTP/1.1" 404 -
Traceback (most recent call last):
  File "main.py", line 15, in <module>
    client.run(os.getenv("TOKEN"))
  File "/home/runner/Disc-Online/venv/lib/python3.8/site-packages/discord/client.py", line 742, in run
    asyncio.run(runner())
  File "/nix/store/2vm88xw7513h9pyjyafw32cps51b0ia1-python3-3.8.12/lib/python3.8/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/nix/store/2vm88xw7513h9pyjyafw32cps51b0ia1-python3-3.8.12/lib/python3.8/asyncio/base_events.py", line 616, in run_until_complete
    return future.result()
  File "/home/runner/Disc-Online/venv/lib/python3.8/site-packages/discord/client.py", line 739, in runner
    await self.start(*args, **kwargs)
  File "/home/runner/Disc-Online/venv/lib/python3.8/site-packages/discord/client.py", line 712, in start
    await self.login(token)
  File "/home/runner/Disc-Online/venv/lib/python3.8/site-packages/discord/client.py", line 583, in login
    data = await state.http.static_login(token.strip())
  File "/home/runner/Disc-Online/venv/lib/python3.8/site-packages/discord/http.py", line 663, in static_login
    data = await self.get_me()
  File "/home/runner/Disc-Online/venv/lib/python3.8/site-packages/discord/http.py", line 541, in request
    raise HTTPException(response, data)
discord.errors.HTTPException: 429 Too Many Requests (error code: 0): <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->
<!--[if IE 7]>    <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]>    <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>Access denied | discord.com used Cloudflare to restrict access</title>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="robots" content="noindex, nofollow" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/main.css" />


<script>
(function(){if(document.addEventListener&&window.XMLHttpRequest&&JSON&&JSON.stringify){var e=function(a){var c=document.getElementById("error-feedback-survey"),d=document.getElementById("error-feedback-success"),b=new XMLHttpRequest;a={event:"feedback clicked",properties:{errorCode:1015,helpful:a,version:1}};b.open("POST","https://sparrow.cloudflare.com/api/v1/event");b.setRequestHeader("Content-Type","application/json");b.setRequestHeader("Sparrow-Source-Key","c771f0e4b54944bebf4261d44bd79a1e");
b.send(JSON.stringify(a));c.classList.add("feedback-hidden");d.classList.remove("feedback-hidden")};document.addEventListener("DOMContentLoaded",function(){var a=document.getElementById("error-feedback"),c=document.getElementById("feedback-button-yes"),d=document.getElementById("feedback-button-no");"classList"in a&&(a.classList.remove("feedback-hidden"),c.addEventListener("click",function(){e(!0)}),d.addEventListener("click",function(){e(!1)}))})}})();
</script>

<script defer src="https://performance.radar.cloudflare.com/beacon.js"></script>
</head>
<body>
  <div id="cf-wrapper">
    <div class="cf-alert cf-alert-error cf-cookie-error hidden" id="cookie-alert" data-translate="enable_cookies">Please enable cookies.</div>
    <div id="cf-error-details" class="p-0">
      <header class="mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-15 antialiased">
         <h1 class="inline-block md:block mr-2 md:mb-2 font-light text-60 md:text-3xl text-black-dark leading-tight">
           <span data-translate="error">Error</span>
           <span>1015</span>
         </h1>
         <span class="inline-block md:block heading-ray-id font-mono text-15 lg:text-sm lg:leading-relaxed">Ray ID: 7687c0bcd8ff2a36 &bull;</span>
         <span class="inline-block md:block heading-ray-id font-mono text-15 lg:text-sm lg:leading-relaxed">2022-11-11 14:35:10 UTC</span>
        <h2 class="text-gray-600 leading-1.3 text-3xl lg:text-2xl font-light">You are being rate limited</h2>
      </header>

      <section class="w-240 lg:w-full mx-auto mb-8 lg:px-8">
          <div id="what-happened-section" class="w-1/2 md:w-full">
            <h2 class="text-3xl leading-tight font-normal mb-4 text-black-dark antialiased" data-translate="what_happened">What happened?</h2>
            <p>The owner of this website (discord.com) has banned you temporarily from accessing this website.</p>
            
          </div>

          
      </section>

      <div class="feedback-hidden py-8 text-center" id="error-feedback">
    <div id="error-feedback-survey" class="footer-line-wrapper">
        Was this page helpful?
        <button class="border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2 rounded" id="feedback-button-yes" type="button">Yes</button>
        <button class="border border-solid bg-white cf-button cursor-pointer ml-4 px-4 py-2 rounded" id="feedback-button-no" type="button">No</button>
    </div>
    <div class="feedback-success feedback-hidden" id="error-feedback-success">
        Thank you for your feedback!
    </div>
</div>


      <div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">
  <p class="text-13">
    <span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">7687c0bcd8ff2a36</strong></span>
    <span class="cf-footer-separator sm:hidden">&bull;</span>
    <span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">
      Your IP:
      <button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>
      <span class="hidden" id="cf-footer-ip">34.28.4.81</span>
      <span class="cf-footer-separator sm:hidden">&bull;</span>
    </span>
    <span class="cf-footer-item sm:block sm:mb-1"><span>Performance &amp; security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing" id="brand_link" target="_blank">Cloudflare</a></span>
    
  </p>
  <script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");b&&"classList"in b&&(b.classList.remove("hidden"),c.addEventListener("click",function(){c.classList.add("hidden");a.getElementById("cf-footer-ip").classList.remove("hidden")}))}var a=document;document.addEventListener&&a.addEventListener("DOMContentLoaded",d)})();</script>
</div><!-- /.error-footer -->


    </div><!-- /#cf-error-details -->
  </div><!-- /#cf-wrapper -->

  <script>
  window._cf_translation = {};
  
  
</script>

<script>(function(){var js = "window['__CF$cv$params']={r:'7687c0bcd8ff2a36',m:'sbPMh6XSx9eY2yk27_fDBNiVZbvOeu0a.ItUep9D1AQ-1668177310-0-ATwNQUNYyBay456aCBc1ibEmEFYfnf/T4Thf/IIu2VOG3vb4X67oNYm7hgdR4ubTYRZnCjKoHOR8tqbcf8l+76E7uVggqFlC7NlbloK4AazzAUsKczqARDNhg6RQkiAM7jXS4vFqcRwXAxfZh3/XBvOfjbkI0Zh2ZmL0bZgYcsd0',s:[0xe538edf5b4,0x217b832e52],u:'/cdn-cgi/challenge-platform/h/b'};var now=Date.now()/1000,offset=14400,ts=''+(Math.floor(now)-Math.floor(now%offset)),_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/h/b/scripts/alpha/invisible.js?ts='+ts,document.getElementsByTagName('head')[0].appendChild(_cpo);";var _0xh = document.createElement('iframe');_0xh.height = 1;_0xh.width = 1;_0xh.style.position = 'absolute';_0xh.style.top = 0;_0xh.style.left = 0;_0xh.style.border = 'none';_0xh.style.visibility = 'hidden';document.body.appendChild(_0xh);function handler() {var _0xi = _0xh.contentDocument || _0xh.contentWindow.document;if (_0xi) {var _0xj = _0xi.createElement('script');_0xj.nonce = '';_0xj.innerHTML = js;_0xi.getElementsByTagName('head')[0].appendChild(_0xj);}}if (document.readyState !== 'loading') {handler();} else if (window.addEventListener) {document.addEventListener('DOMContentLoaded', handler);} else {var prev = document.onreadystatechange || function () {};document.onreadystatechange = function (e) {prev(e);if (document.readyState !== 'loading') {document.onreadystatechange = prev;handler();}};}})();</script></body>
</html>

172.18.0.1 - - [11/Nov/2022 14:40:00] "GET / HTTP/1.1" 200 -
172.18.0.1 - - [11/Nov/2022 14:45:00] "GET / HTTP/1.1" 200 -
172.18.0.1 - - [11/Nov/2022 14:50:00] "GET / HTTP/1.1" 200 -
172.18.0.1 - - [11/Nov/2022 14:55:00] "GET / HTTP/1.1" 200 -
172.18.0.1 - - [11/Nov/2022 14:59:38] "GET / HTTP/1.1" 200 -
172.18.0.1 - - [11/Nov/2022 15:00:00] "GET / HTTP/1.1" 200 -

Local Installation doesnt work

keeps saying No module named linecache can be found

command prompt:

onlineforever>pip install -r requirements.txt

Traceback (most recent call last):
File "", line 198, in run_module_as_main
File "", line 88, in run_code
File "C:\Python311\Scripts\pip.exe_main
.py", line 4, in
File "C:\Python311\Lib\site-packages_distutils_hack_init
.py", line 97, in find_spec
return method()
^^^^^^^^
File "C:\Python311\Lib\site-packages_distutils_hack_init_.py", line 145, in spec_for_pip
if self.pip_imported_during_build():
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Python311\Lib\site-packages_distutils_hack_init_.py", line 155, in pip_imported_during_build
import traceback
File "C:\Python311\Lib\traceback.py", line 5, in
import linecache
ModuleNotFoundError: No module named 'linecache'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.