热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Github恶搞之自定义你的contribution图表

在正式写程序之前让我先来看看效果:对了,这个程序的效果就是生成一个具有你想要的“contributionsinthelastyear”图表的html页面。当然,html文件,而不是你在Gi

在正式写程序之前让我先来看看效果:

对了,这个程序的效果就是生成一个具有你想要的“contributions in the last year”图表的html页面。
当然,html文件,而不是你在Github上面个人主页中的实际的页面。
当然,你可以通过个人努力达到效果(我之前就见过一个I 心 U,但是暂时没有找到出处),不过那需要非常努力和耐性,并且那么做的话收获更多(如果不是仅仅为了那么做而commit+push的话),所以这里介绍一个程序来实现这种方法。
接下来我将用Java来编写程序,主要分为两个步骤:

  1. 下载网页源代码
  2. 根据自己设计的字体替换网页中对应的内容

其中第二步有很多现有的工具,比如Jsoup,但是可以用正则表达式直接解决,后来我发现一个写起来比较方便的方法,因为我发现每一种颜色对应一个fill元素,所以可以直接从fill元素下手。
我把设计的字体保存在了文件picture-fonts.txt(是一个只有字符"0"和"1"的字符文件)中,并把每个字符在picture-fonts.txt中的位置保存在了position.txt中。 他们的预期效果如下:

这意味着在这里你暂时只能达到“ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789”的效果。
“contributions in the last year”列表里面一共有7行53列,为了保(tou)险(lan)这里就先不去动最后一列了。所以我们有7行52列可以用,所以这个程序将会输出最多的我们想要的结果。
程序的代码就一个,内容如下:

package fungithub;

import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class FunGithub {
    
    private static Map wordMap = new HashMap();
    private static int[][] picNumber = new int[1000][30];
    
    
    public static void main(String[] args) {
        if (args.length != 2) {
            System.err.println("usage :  ");
            System.exit(1);
        }
        solve(args[0], args[1]);
    }
    
    public static void solve(String username, String words) {
        words = words.toUpperCase();
        try (
            BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(System.getProperty("user.dir") + "/picture-fonts.txt"), "utf-8"))
                ) {
            int idx = 0;
            String line = null;
            while ((line = br.readLine()) != null) {
                line = line.trim();
                if (line.length() == 0) continue;
                int len = line.length();
                char[] ch = line.toCharArray();
                for (int i = 0; i ) {
                    char c = ch[i];
                    picNumber[idx][i] = (int) c -  (int)'0';
                }
                idx ++;
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        try (
            BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(System.getProperty("user.dir") + "/position.txt"), "utf-8"))
                ) {
            String line = null;
            while ((line = br.readLine()) != null) {
                line = line.trim();
                if (line.length() == 0) continue;
                Word temp = new Word(line);
                wordMap.put(temp.getC(), temp);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        
        List allWords = new ArrayList();
        int i;
        for (i = 0; i ) {
            String oneWordString = String.format("%c", words.charAt(i));
            Word oneWord = wordMap.get(oneWordString);
            if (OneWord== null) {
                System.err.println(oneWordString + " not exists!");
                continue;
            }
            List tmpWordsList = oneWord.getWordsList();
            if (allWords.size() + tmpWordsList.size() > 52 * 7)
                break;
            else {
                allWords.addAll(tmpWordsList);
                if (allWords.size() + 7 <= 52 * 7)
                    for (int j = 0; j <7; j ++)
                        allWords.add(0);
            }
        }
        System.out.println("\"" + words.substring(0, i) +"\" solved!");
        int delta = 52 * 7 - allWords.size();
        for (int j = 0; j );
        // allWords -- the list with 52 * 7 words generated.
        
        // download url content
        URL url = null;
        HttpURLConnection urlConnection = null;
        BufferedReader reader;
        String pageContent = "";
        try {
            url = new URL("https://github.com/" + username);
            urlConnection = (HttpURLConnection) url.openConnection();
            reader = new BufferedReader(new InputStreamReader(urlConnection.getInputStream(), "utf-8"));
            String line;
            while ((line = reader.readLine()) != null){
                 pageContent += line + "\n";
            }
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        
        pageContent = pageContent.replaceAll("fill=\"#[0-9a-e]{6}\"", "MoON1igHt");
        for (int word : allWords) {
            String fillStr = null;
            if (word == 1) {
                fillStr = "fill=\"#1e6823\"";
            } else {
                double r = Math.random();
                if (r <= 0.3) fillStr = "fill=\"#eeeeee\"";
                else if (r <= 0.9) fillStr = "fill=\"#d6e685\"";
                else if (r <= 0.96) fillStr = "fill=\"#8cc665\"";
                else fillStr = "fill=\"#44a340\"";
            }
            pageContent = pageContent.replaceFirst("MoON1igHt", fillStr);
        }
        pageContent = pageContent.replaceAll("MoON1igHt", "fill=\"#eeeeee\"");
        
        // write content to output html file, here I set it to Desktop, here I am the user "Administrator" on Windows7
        String outputFileName = "C:/Users/Administrator/Desktop/" + username + "-" + words + ".html";
        try (
                OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(outputFileName), "utf-8");
                ) {
            osw.write(pageContent);
        } catch (UnsupportedEncodingException | FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        
        System.out.println(username + "-" + words + ".html successifully generated at desktop!");
    }
    
    static class Word {
        
        private String c;
        private int px;
        private int py;
        private int height;
        private int width;
        private List wordsList;
        
        public Word(String line) {
            String[] arr = line.split(",");
            c = arr[0];
            px = Integer.parseInt(arr[1]);
            py = Integer.parseInt(arr[2]);
            height = Integer.parseInt(arr[3]);
            width = Integer.parseInt(arr[4]);
            
            // generate wordsList
            wordsList = new ArrayList();
            for (int j = 0; j ) 
                for (int i = 0; i )
                    wordsList.add(picNumber[px+i][py+j]);
        }
        
        public String getC() { return c; }
        public int getPx() { return px; }
        public int getPy() { return py; }
        public int getHeight() { return height; }
        public int getWidth() { return width; }
        public List getWordsList() { return wordsList; }
    }
}

另外还有2个资源文件,Github项目位置:https://github.com/moonlightpoet/FunGithub 有兴趣可以玩一下。
另外github pages上面放了两个可以看看在线效果(一个I Love you的和一个Fxxk you的):

I Love You
Fxxk You

注:今天找到了知乎上问题的出处了


推荐阅读
  • 本文详细介绍了如何在本地环境中安装配置Frida及其服务器组件,以及如何通过Frida进行基本的应用程序动态分析,包括获取应用版本和加载的类信息。 ... [详细]
  • BL550721、特点液晶驱动输出:Common输出4线,Segment输出36线内置显示寄存器364144bit2线串行接口(SCL,SDA)内置震荡电路内置液晶驱动电源电路13 ... [详细]
  • 使用IntelliJ IDEA高效开发与运行Shell脚本
    本文介绍了如何利用IntelliJ IDEA中的BashSupport插件来增强Shell脚本的开发体验,包括插件的安装、配置以及脚本的运行方法。 ... [详细]
  • 探索将Python Spyder与GitHub连接的方法,了解当前的技术状态及未来可能的发展方向。 ... [详细]
  • 本文介绍如何使用Python编程语言合并字典中具有相同集合值的键,并提供两种实现方法。 ... [详细]
  • BeautifulSoup4 是一个功能强大的HTML和XML解析库,它能够帮助开发者轻松地从网页中提取信息。本文将介绍BeautifulSoup4的基本功能、安装方法、与其他解析工具的对比以及简单的使用示例。 ... [详细]
  • [编程题] LeetCode上的Dynamic Programming(动态规划)类型的题目
    继上次把backTracking的题目做了一下之后:backTracking,我把LeetCode的动态规划的题目又做了一下,还有几道比较难的Medium的题和Hard的题没做出来,后面会继续 ... [详细]
  • 本教程旨在指导开发者如何在Android应用中通过ViewPager组件实现图片轮播功能,适用于初学者和有一定经验的开发者,帮助提升应用的视觉吸引力。 ... [详细]
  • 深入解析链表成环问题:剑指Offer第22天的新视角
    本文将详细介绍链表成环问题的多种解法,包括哈希表法、JSON.stringify特殊解法及双指针法,并提供详尽的代码示例。阅读本文,你不仅能够掌握这一经典算法问题的核心技巧,还能了解到更多编程思维的拓展。 ... [详细]
  • HDU1085 捕获本·拉登!
    问题描述众所周知,本·拉登是一位臭名昭著的恐怖分子,他已失踪多年。但最近有报道称,他藏匿在中国杭州!虽然他躲在杭州的一个洞穴中不敢外出,但近年来他因无聊而沉迷于数学问题,并声称如果有人能解出他的题目,他就自首。 ... [详细]
  • 本文详细解析了Java中流的概念,特别是OutputStream和InputStream的区别,并通过实际案例介绍了如何实现Java对象的序列化。文章不仅解释了流的基本概念,还探讨了序列化的重要性和具体实现步骤。 ... [详细]
  • Python闭包深度解析与应用实例
    本文详细介绍了Python闭包的基本概念、必要条件及其实现方式,并通过具体示例说明闭包在提高代码复用性和维护性方面的作用。文章最后还探讨了闭包的内部机制及其在实际项目中的应用。 ... [详细]
  • GCC(GNU Compiler Collection)是GNU项目下的一款功能全面且高效的多平台编译工具,广泛应用于Linux操作系统中。本文将详细介绍GCC的特点及其基本使用方法。 ... [详细]
  • 页面预渲染适用于主要包含静态内容的页面。对于依赖大量API调用的动态页面,建议采用SSR(服务器端渲染),如Nuxt等框架。更多优化策略可参见:https://github.com/HaoChuan9421/vue-cli3-optimization ... [详细]
  • 本文详细介绍了如何在PyQt5中创建简易对话框,包括对话框的基本结构、布局管理以及源代码实现。通过实例代码,展示了如何设置窗口部件、布局方式及对话框的基本操作。 ... [详细]
author-avatar
Jason
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有