GSoC 2018 is coming to an end. This GIST will present you this project in its current state (August 10, 2018).
We can run a sample vulkan compute application, R/W data to/from the server, and execute a compute shader.
-- This is free and unencumbered software released into the public domain. | |
-- The software is provided "as is", without warranty of any kind. | |
-- Anyone is free to copy, modify, publish, use, compile, sell, or | |
-- distribute this software, either in source code form or as a compiled | |
-- binary, for any purpose, commercial or non-commercial, and by any means. | |
-- For more information, please refer to <http://unlicense.org/> | |
-- | |
-- Use KDE KDialog to add files to playlist, subtitles to playing video or open URLs. | |
-- Based on 'mpv-open-file-dialog' <https://github.com/rossy/mpv-open-file-dialog>. | |
-- |
# Generated by mksrcinfo v8 | |
# Tue Dec 15 23:45:25 UTC 2015 | |
pkgbase = osdlyrics-git | |
pkgdesc = Standalone lyrics fetcher/displayer (windowed and OSD mode). Supports MPRIS1/2 players, and MPD. | |
pkgver = 0.4.99.r817.3fe2571 | |
pkgrel = 1 | |
url = https://github.com/PedroHLC/osdlyrics | |
install = osdlyrics.install | |
arch = i686 | |
arch = x86_64 |
Make your Arch fonts beautiful easily! This is what I do when I install Arch Linux to improve the fonts.
You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality):
Install some fonts, for example:
sudo pacman -S ttf-dejavu ttf-liberation noto-fonts
#!/usr/bin/python | |
#Install SleekXMPP & xmpppy Modules | |
#This program is not for children -(18) | |
#This program is only for educational purposes only. | |
#Don't Attack people facebook account's it's illegal ! | |
#If you want to HaCk into someone's account, you must have the permission of the user. | |
#usage:Facebook-brute-force.py [wordlist file] | |
#Coded By Hossam Youssef <[email protected]> ^_^ | |
#!/bin/bash | |
file=$1 | |
test -z $file && echo "file required." 1>&2 && exit 1 | |
git filter-branch -f --index-filter "git rm -r --cached $file --ignore-unmatch" --prune-empty --tag-name-filter cat -- --all | |
git ignore $file | |
git add .gitignore | |
git commit -m "Add $file to .gitignore" |
#!/bin/bash | |
# | |
# Version 1.4 | |
# | |
# twrp.sh -- a TWRP compatible backup script for your computer | |
# Brought to you by inhies | |
# | |
# This script creates TWRP compatible backups over usb using adb and magikz | |
# By default it makes a folder in the standard TWRP date--time format (I think) | |
# To restore these backups, place the folder in /sdcard/TWRP/BACKUPS/<serialnumber>/ |
var eightbitOptions = { | |
getTileUrl: function(coord, zoom) { | |
return "http://mt1.google.com/vt/lyrs=8bit,m@174000000&hl=en&src=app&s=Galil&" + | |
"z=" + zoom + "&x=" + coord.x + "&y=" + coord.y; | |
}, | |
tileSize: new google.maps.Size(256, 256), | |
isPng: true | |
}; | |
var eightbitMapType = new google.maps.ImageMapType(eightbitOptions); |