Skip to content
View akamilkhan's full-sized avatar
💥
Moving forward!
💥
Moving forward!
Block or Report

Block or report akamilkhan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Social-Media-Automation Social-Media-Automation Public

    Tools/Scripts I used to automate my instagram motivational quote page.

    Python 1

  2. cpp2python cpp2python Public

    Sample project demonstrating C++ code reusability in python using boost.python.

    C++ 2

  3. hex_dump hex_dump
    1
    void hex_dump(void *addr, int len)
    2
    {
    3
    
                  
    4
       printf("length of hexdump = %d", len);
    5
       int            i;
  4. Set bold and set italic function for... Set bold and set italic function for Photoshop JS Scripting. This can be used to control text properties in ranges, which is otherwise not supported by conventional PS JS scripting.
    1
    function setbold(IO, start, end, fontSize) {
    2
        //Sanity checking: is the active layer a text layer?
    3
        var activeLayer = app.activeDocument.activeLayer;
    4
        if (activeLayer.kind == LayerKind.TEXT) {
    5
            //More checking: does the text layer have content, and are start and end set to reasonable values?
  5. Simple-WebSocket-Server Simple-WebSocket-Server Public

    Forked from eidheim/Simple-WebSocket-Server

    A very simple, fast, multithreaded, platform independent WebSocket (WS) and WebSocket Secure (WSS) server and client library implemented using C++11, Boost.Asio and OpenSSL. Created to be an easy w…

    C++ 1