seen from Argentina

seen from United States
seen from Russia
seen from Russia
seen from Netherlands

seen from Türkiye
seen from United States
seen from Algeria
seen from Türkiye
seen from Netherlands
seen from Russia

seen from United States

seen from Netherlands
seen from United States
seen from China
seen from United Kingdom
seen from United States

seen from United Kingdom
seen from Ukraine
seen from Türkiye
The Grand Opus Of Hell
TEXT 3: THE PRIMAL VERSUS THE CEREMONIAL
Primal Magick will always - without contradiction - be more powerful than Ceremonial . . . despite all of the preparation, meticulous observations, carefully planned Correspondences and infinite plans made by the Ceremonial Magician such things are only conducive to the linear mind and are of no interest whatsoever to the subconscious sphere of the brain where true Magickal power gains its genesis. The Voodoo Sorcerer, the Primal Satanist, the Dark Witch, the angered Gypsy - all of their Maledictions carry more power than the empty pomp and ceremony of the RHP Ceremonial Magician. The Ceremonial Practitioner defeats the natural flow of the their own power and the power of the forces they are calling upon by the constraints, pedantic measures and - at times - ridiculous extremes of their Ritual preparations. The Workings of The Grand Opus Of Hell are powerful and raw, they are Primal Black Arts which forge instant connections with the Demonic Beings of the Infernal Legion and which tap naturally into the latent powers which lies within us. Demons are not interested in the size of a Magickal Circle or if you have taken your cleansing bath, they have no interest in if you have fasted the day before a Ritual Working, nor do they care if you summon them on a Tuesday or a Sunday . . . they are called by desire, will, primal and carnal energy and by the intense passion which should lie within the Satanic Sorcerer. Ritual is a powerful Tool, the very setting up of the Infernal Altar and donning of the Black Ritual Robes creates a setting which stimulates the subconscious mind for the practicing of the Dark Arts, but these things are Aesthetic, for Aesthetics are raw visual conduits and catalysts for the power of Magick within ourselves and the power of the Demons also. But in RHP Magickal Orders and even some of those of the LHP such Aesthetics and Subconscious triggers are taken to nonsensical proportions overtaking the natural emotive forces and Magickal energies themselves. Ceremonial Magick is observed and practiced far more often by RHP Occultists than those of the LHP, such observed practices are no more than showmanship, pomp and ceremony, pandering to the linear mind which controls such people . . the true Satanic Occultist needs no such prompts or calculations in their Workings. For some years I involved myself in the practices of LHP Tantrism and Raw Goetic Sorcery (at times merging the two), these Ritual Workings are so direct and raw in their foundations as to be performed with no preparation nor endless corresponding observations . . . they utilize Imitative/Sympathetic Magick, the forces of Sex and Death, the biological Magickal properties of our own bodies and the power of the spoken word and they are some of the most potent and productive Workings I have taken part in. Such practices are rarely published (particularly those of LHP Tantrism) which are held in secrecy much of the time due to the insidious and nefarious elements involved in the Rites. Most texts published on Goetic Magick are of the kind in which the Spirits are summoned up under the command of a God with no connection to these Spirits - which is an insulting and vile way of practicing Magick. My Workings with these Spirits were primal and direct, no Magickal Circles nor Triangles, no demands nor constraints . . . just pure undiluted Communion and Conjuration with these powerful and Mighty Djinn. I once had the honour of speaking with an Occultist who utilized Goetic Conjuration merged with the practices of Voodoo, although never taking part in these practices myself what he relayed to me appeared to be Rites of raw, dark and beautiful formulation. I have incorporated techniques and elements of the Goetic and Tantric Magick I have performed in the past into some of the Workings of The Grand Opus Of Hell and they have produced powerful and deeply profound Practices and results gestating into an allegiance of great depth with Satan and the Demons of His Legion. Always take the Primal Path over the Ceremonial Path if you truly seek to gain alliance and merging with the Demonic Spirits of Hell, it is to this form of Occultism which they respond willingly True they can be conjured in a Ceremonial fashion but by doing so you will lose the prospective respect and allegiance which can be obtained, also true they can be commanded to manifest through the foul Workings of the RHP Priest - but no ‘true Satanist’ would undertake this method of Magick, for those who do I would say they should observe their preparations very well indeed, for the Demon - if given chance - will exact a terrible and just revenge!
(c)copyright2018 Father Elias
To let conformist cunts and pious idiots walk around is an insult to Satan and His Demons . . . what do you think the Black Arts were made for? Drive those Nails in deep and imagine bathing in your victim’s blood, let the Demons Alastor and Stygal arise within you and relish in the demise of such human waste!
ImageMagick 6.9.0-2
ImageMagick ile yeni resimler oluşturabilir, düzenleyebilir ve formatları dönüştürebilirsiniz. Dönüştürebileceğiniz dosya türleri DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, PostScript, SVG, TIFF ve daha 100denfazla görüntü dosyasını dönüştürebilirsiniz. Ayrıca yeniden boyutlandırma, ters çevirme, ayna, döndürme, deforme etme, kesme, renk ayarları, çeşitli özel efektler uyugulayabilme,…
View On WordPress
How to zoom or shrink an image without making it look blurred
Use image-magick and play with the parameters.
convert -interlace Plane -gaussian-blur 0.05 \ -quality 85% -resize 50% source.jpg result.jpg
How to convert the route map of the Berlin S-Bahn and U-Bahn from PDF to an image
# download the route network as PDF file wget http://www.bvg.de/index.php/de/binaries/asset/download/20909/file/1-1 -O berlin_liniennetz.pdf # convert it to an image: convert -density 300 -resize 3000 -quality 85% berlin_liniennetz.pdf berlin_liniennetz.jpg # display the route network: gwenview berlin_liniennetz.jpg
How to create a big image with 6 tiles from one image.
If you want to print one image several times on a sheet of paper you can use the following command and create
# create a montage from one image montage family.png -bordercolor black -border 1 -duplicate 5,0 -tile 2x3 -geometry +0+0 family_x_6.png # add an additional frame around it convert -bordercolor black -border 1 family_x_6.png -quality 90% family_x_6.jpg
Example:
How to take a screenshot in Ubuntu Linux with mouse position from command-line
This post is about controlling the Linux desktop remotely. Something like a remote desktop with images. Less network traffic than VNC. Useful for mobile connections.
The program xwd does not capture the mouse pointer. gnome-screenshot is not usable from command line. Therefore I use xwd and add the mouse position afterwards with the program image-magick (convert).
getScreenshot.sh
#!/bin/bash # create red circle as mouse position if [ ! -f /dev/shm/draw_circle.png ];then convert -size 11x11 xc:none -fill red -draw "circle 5,5 1,1" /dev/shm/draw_circle.png fi # get screenshot with x window dump xwd -silent -root -out /dev/shm/test.xwd sleep 0.2 # create screenshot with mouse pointer and reduced quality if [ "$1" == "gif" ];then convert /dev/shm/test.xwd /dev/shm/draw_circle.png -geometry $(xdotool getmouselocation | sed 's|x:\(.*\) y:\(.*\) sc.*|+\1+\2|g') -composite -quality 50% /dev/shm/screenshot.gif else convert /dev/shm/test.xwd /dev/shm/draw_circle.png -geometry $(xdotool getmouselocation | sed 's|x:\(.*\) y:\(.*\) sc.*|+\1+\2|g') -composite -quality 50% /dev/shm/screenshot.jpg fi
You can upload your IP address with a shell script for example every two minutes if you have a dynamic IP address.
uploadIPAddress.sh
#!/bin/bash # wait for the network to connect (e.g. dhclient) sleep 10 # set a meaningless old IP address echo "1234" > /dev/shm/old_ipaddress.txt # loop until script is killed while [ true ];do # remove IP address from the last time rm -f /dev/shm/ipaddress.txt # save the IP address at the web server and download the result wget http://example.org/save_ip_address.php -O /dev/shm/ipaddress.txt # ipAddress=$(cat /dev/shm/ipaddress.txt) # check for a new IP address diff /dev/shm/old_ipaddress.txt /dev/shm/ipaddress.txt > /dev/null 2>&1 # if a new IP address is available then save it if [ $? -ne 0 ]; then echo "IP address is different." cp /dev/shm/ipaddress.txt /dev/shm/old_ipaddress.txt fi # wait 2 minutes sleep 120 done
At your server (example.org) you need a small PHP script to save the IP address and make it available to other computers (something like dynamic DNS).
save_ip_address.php
<?php $ipAddress = getenv('REMOTE_ADDR'); echo $ipAddress; $myFile = "ip_address.txt"; $fileHandle = fopen($myFile, 'w') or die("can't open file"); fwrite($fileHandle, $ipAddress); fclose($fileHandle); ?>
On the remote laptop setup the .bashrc:
vi ~/.bashrc alias jpg='/path/to/getScreenshot.sh' export DISPLAY=:0.0 :wq
On the local laptop:
# get the IP address of the remote laptop that # was saved earlier (something like dynamic DNS) wget http://example.org/ip_address.txt -O /dev/shm/ip_address.txt # log into the remote laptop via ssh ssh user@$(cat /dev/shm/ip_address.txt) # get a screenshot of the remote laptop # see alias jpg above jpg # copy the remote created screenshot to the local device scp user@$(cat /dev/shm/ip_address.txt):/dev/shm/screenshot.jpg\ /dev/shm/screenshot.jpg # xiv can be used to get the coordinates of the screenshot http://sourceforge.net/projects/xiv/files/xiv-0.8.tgz/download tar xzvf xiv-0.8.tgz cd xiv-0.8/ ./configure make # in xiv.cpp main you can add the following lines # after line 2056: if (ks==XK_F2) { printf("F2: %d %d\n",(int)xp,(int)yp); fflush(stdout); } # recompile make # show screenshot ./xiv /dev/shm/screenshot.jpg # press F2 to select a mouse position # press q to leave xiv - then you see # the coordinates at exit on the command line # get the coordinates into the # buffer of the clipboard automatically: ./xiv /dev/shm/screenshot.jpg | head -n 1 | xsel -b # take these coordinates and use the program # xte at the remote laptop # the following command lines are example usages # and simulate mouse clicks and key presses xte "mousemove 80 100" "mouseclick 1" xte "keydown Control_L" "key n" "keyup Control_L" xte "sleep 1" "str Hello world"