Skip to content

Instantly share code, notes, and snippets.

@o-ars
o-ars / choco
Created November 11, 2020 13:55
choco install chocolatey-core.extension
choco install 7zip.install
choco install javaruntime
choco install flashplayerplugin
choco install ccleaner
choco install ccenhancer
choco install libreoffice-fresh
choco install foobar2000
choco install irfanview
choco install irfanviewplugins
@o-ars
o-ars / cloudSettings
Last active February 29, 2020 00:27
oars vscodium setting for sync
{"lastUpload":"2020-02-29T00:20:56.396Z","extensionVersion":"v3.4.3"}

Keybase proof

I hereby claim:

  • I am o-ars on github.
  • I am oar (https://keybase.io/oar) on keybase.
  • I have a public key ASBQtYOa5TFHopaiifjMmaDE2FV1FNCcWJTL0O4wMtRpbwo

To claim this, I am signing this object:

@o-ars
o-ars / .htaccess
Created July 10, 2019 05:27
quasar framework - apache - subdirectory
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /spa
RewriteRule ^spa/index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /spa/index.html [L]
</IfModule>
@o-ars
o-ars / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
drupal-x.xx ist die Drupal Version in diesem Fall drupal-7.14
------------------------------------------------------------------
wget http://ftp.drupal.org/files/projects/drupal-x.x.tar.gz
tar -xzvf drupal-x.x.tar.gz
mv drupal-x.x/* drupal-x.x/.htaccess ./
rm -rf drupal-x.xx
(function ($, Drupal, window, document, undefined) {
$(document).ready(function() {
});
})(jQuery, Drupal, this, this.document);
Vagrant::Config.run do |config|
# box
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
# ports
config.vm.forward_port 80, 8080
# puppet
config.vm.share_folder "puppet-files", "/etc/puppet/files", "puppet/files"
drush dl drupal //Download drupal
drush site-install --db-url=mysql://user:password@localhost/drupal //install downloaded drupal folder
drush dl simplenews admin_menu //Download modules SimpleNews and Admin_Menu
drush en admin_menu, simplenews, admin_menu_toolbar // Enables the three different modules
drush dis toolbar //Disable default drupal toolbar