This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[-- | |
aaasoundcloud_single.lua - SonundCloud track parser | |
Copyright (C) 2016-2018 Sono (https://github.com/MarcuzD) | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as | |
published by the Free Software Foundation, either version 3, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, but |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LEL=`cvt $2 $3 $4 | grep "Modeline" | cut -b10- | tr -s " " | sed 's/\([0-9]*x[0-9]*\)_[^\"]*/\1/g'`;NAEM=`echo $LEL | cut -d'"' -f2`;echo $LEL | xargs xrandr --newmode;xrandr --addmode $1 $NAEM;xrandr --output $1 --mode $NAEM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd $JAVA_HOME; for feil in bin/*; do if [ -f $feil -a -x $feil ]; then sudo update-alternatives --install /usr/$feil `basename $feil` $JAVA_HOME/$feil 8001; fi; done; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# =================================== | |
# GBATemp notifier bash script | |
# | |
# created by MarcusD | |
# Copyright $(date +"%Y") | |
# | |
# :P | |
# =================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
/* | |
SoundCloud XSPF playlist generator / track redirector | |
Made by MarcusD | |
Usage examples: | |
sc_xspf.php?username/sets/playlistname | |
sc_xspf.php?username/trackname | |
sc_xspf.php?https://soundcloud.com/username/sets/playlistname | |
sc_xspf.php?https://soundcloud.com/username/trackname |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
typedef unsigned long long u64; | |
u64 lcm(u64 f, u64 s) | |
{ | |
u64 n1, n2; | |
if(f > s) { n1 = f; n2 = s; } | |
else { n1 = s; n2 = f; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[-- | |
SoundCloud user track player plugin | |
Copyright (C) 2016-2018 Sono (https://github.com/MarcuzD) | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as | |
published by the Free Software Foundation, either version 3, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, but |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XSCREEN 2 | |
BGSCREEN 0,134217728,16 | |
A=0 | |
C=1 | |
U=0 | |
K=0 | |
S=0 | |
SM=0 | |
EM=0 | |
@MAINLOOP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
typedef unsigned long long u64; | |
typedef unsigned int u32; | |
typedef unsigned short u16; | |
typedef unsigned char u8; | |
int main(int argc, char** argv) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <3ds.h> | |
int main() | |
{ | |
Handle nwmEXT_handle; | |
aptMainLoop(); | |
if(R_FAILED(srvGetServiceHandle(&nwmEXT_handle, "nwm::EXT"))) return 1; | |
OlderNewer