This gist has moved to a proper git repo so people can make pull requests: https://github.com/Zenexer/internet-reference/blob/main/Mac%20Keyboard%20Symbols.md
[data-slides] { | |
background-image: url(../../uploads/banner1.jpg); /* Default image. */ | |
background-repeat: no-repeat; | |
background-position: center top; | |
background-size: cover; | |
transition: background-image 1s linear; | |
} | |
/* Use additional CSS to control the `height` of `[data-slides]`, like so: */ |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
- Install I2P
- Download I2P
java -jar i2pinstall_*.jar
- Install Java Service Wrapper
- Download Community Version
tar xzf wrapper-*.tar.gz
cp wrapper*/bin/wrapper /Applications/i2p/i2psvc
cp wrapper*/lib/wrapper.jar /Applications/i2p/lib
cp wrapper*/lib/libwrapper.so /Applications/i2p/lib
- Try to start I2P using
/Applications/i2p/i2prouter start
or Start I2P Router app
I was hacking on a little side-project, and found that most lists of torrent trackers are full of defunct trackers, or lots of dupes. I spent a while going through all the lists on the first few pages of Google, compiling them into a giant list, de-duping it, and then writing some quick code to test all of them.
Also, an aside: "/announce" on the end of a UDP URL doesn't make any sense. It's completely ignored at the protocol level, so I normalized entries by removing it.
I don't endorse any of these trackers, nor suggest you use them for committing copyright infringement.
These trackers all respond to at least some scrape queries:
// Enable component-scanning and auto-configuration with @SpringBootApplication Annotation | |
// It combines @Configuration + @ComponentScan + @EnableAutoConfiguration | |
@SpringBootApplication | |
public class FooApplication { | |
public static void main(String[] args) { | |
// Bootstrap the application | |
SpringApplication.run(FooApplication.class, args); | |
} | |
} |
With autofs you can easily mount network volumes upon first access to the folder where you want to mount the volume. Autofs is available for many OS and is preinstalled on Mac OS X so I show you how I mounted my iTunes library folder using this method.
autofs needs to be configured so that it knows where to gets its configuration. Edit the file /etc/auto_master
and add the last line:
#
# Automounter master map
#
+auto_master # Use directory service
- php process is wrapped like this: PHP file -> php-fpm -> nginx
- basically means disable all facilities that catch output from the script on it's way to nginx
- standard error output will the end in Nginx's logging facility
On CentOS
- make sure your script does not set
error_log
- edit
/etc/php-fpm.conf
, disable lineerror_log = /var/log/php-fpm/error.log
- edit
/etc/php-fpm.d/www.conf
, disable line starting withphp_admin_value[error_log] = ...
- restart fpm:
systemctl restart php-fpm