Don't wanna be here? Send us removal request.
Link
“WebP” what is this format for...
Ok guys, it you develop web page as an amateur just like me, let me share you some details about nowadays picture format on web. this one from “google” and 1/3 size of “JPEG”. Page must look nice and must be fast. so try that converter i shared and see the difference.
0 notes
Text
hidden div element under an other div element. useful if you need a day
today i am going to share with you guys a short CSS and HTML code. cust coppt and past and try it it looks nice and useful to learn thing like basic gabe on your page ;)
<!DOCTYPE html> <html> <head> <style> #div1 { position: relative; height: 200px; width: 200px; margin: 100px; padding: 10px; border: 1px solid black; }
#div2 { padding: 50px; width:100px; position: absolute; border: 1px solid black; background-color: red; transition-duration:1000ms; } #div3{ z-index:-1; width:100px; text-align:right; padding: 50px; position: absolute; border: 1px solid black; background-color: yellow; transition-duration:1000ms; } #div2:hover{
transition-duration:1000ms; -ms-transform: rotate(45deg); /* IE 9 */ -ms-transform-origin: 50% 40%; /* IE 9 */ transform: rotate(50deg); transform-origin: 0% 0%; } </style> </head> <body>
<h1>The transform-origin Property</h1>
<div id="div1"> <div id="div2">HELLO</div> <div id="div3">bye</div> </div>
</body> </html>
0 notes
Link
Hi again evert1 after a long time, i had alot to do nowadays even under this COVID-19 event.
Approximately 1 in 12 men and 1 in 200 women in the world got colorblindness. As developer and sharer of experineces i recomment you to design you web sites with thinking all users: can not hear, see, touch, or colorbliend....
that site i shared will take you to read some about colors and bottom you got 3 colors pallet. use them ;)
0 notes
Link
Hi again people,
Today i want to tell you about an online (desctop use depends) flowchart helper. it is a helper becasue it is life saving thing. Free, open source and professional enough. what you need youa re going to have it. Todays word, beeing well organized is keypoint mostly. And such things what we need, asn a programmer or for any reason you need a flowchart and that base thing, try that one, 100% sure, you gonna LOVE it.
0 notes
Link
Hi every1
Today i want to share you all how to generate a favicon, easy+cute+atractive way. That web website above, helps you to generate a favicon. It is base on https://fontawesome.com/ library and believe me it is a rich one. For a beginner or temporarly need, useful.
Hey, try it and share your impression with us
0 notes
Video
youtube
Hi Every1,
Todays theme is adding Charts into our Asp.Net MVC design. This video i strongly recomment you to watch. It is explaning -actually just showing- how to use charts by adding "using System.Web.Helpers;" and by this way you do not need "JasonResult". it is slower but using DataBase and showing results visualized is fine and enough mosetly.
have fun
0 notes
Link
Hi agian everyone,
Todays theme is D3 JS library. To visualize your data and make it easy to read and understand, you just need HTML, CSS and JS knowledge. there is plenty of turorials on youtube in EN, TR, GR, RU ... and in other languages.
if i have time soon i will upload some experience sharing purpose videos on youtube about D3 as well. Just google it and you gonna fall in love in few second ;)
nice to share,
take care guys
0 notes
Link
Hi everyone, this web site offers you all free learning and practicing apportunity, in plenty different fields such as HTML, CSS, Bootstrap, JS, JQuery, C#,Java and more. No registration is needed, that is nice. In NavBar there is 4 dropdown and each has all listet and grouped well. Nice and easy to reach what you need. As and extra, left side menu at Home page, it is easy to scroll down and filter all options -as a good grouped again- and choose one to start you journey.
It is one of my favorite. Please share your ecperineces, feeling, and judgment with me as a comment and let see others to see what thinks others.
1 note
·
View note
Text
polimorphism and property which uses statich variable as a counter :)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;namespace Polimorphism1.polimorphism { class C:B { public int c=0; } }// LAST DERIVED CLASS FROM A & B
***********************here i try to explane polimorphism via C#, and casting between referances. as an extra information for today: i will show you how to use a static veriable like a countr in a property in our BaseClass
*********************
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Polimorphism1.polimorphism { class A { public int a = 10; public int aa = 20; private string x=string.Empty; private static int counter=1; public string MyProperty { get { return x; } set { x += value+"-"+counter; counter++; } } public string my { get { return x; } } } }
*******************************
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Polimorphism1.polimorphism {
class B:A { public int b = 2; public int bb = 4; }
}
**********************************
MAIN PROGRAM:::::>
******************
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
using Polimorphism1.polimorphism;
namespace Polimorphism1 { class Program { static void Main(string[] args) { Console.WriteLine("-----------------------------");
A item = new C(); B item1 = new C(); C item2 = new C();
var x=(C)item1;
for (int i = 0; i < 10; i++) { item.MyProperty = "HASAN"; Console.WriteLine("-------------------------"); Console.WriteLine(item.MyProperty); }
Console.WriteLine("-----------------------------");
var t = (B)item2;
Console.ReadKey();
} } }
=================================
Class A B and C in namespace “ Polimorphism1.polimorphism“
try to understand on yourself.
and Q. do not hesitate :)
1 note
·
View note
Text
passing a value || reference into a FUNCTION :P
ok guys this is the first words of the day. and i am sure it is going TO BE the best text of the day for most of you. First of all, look this;
p=&a || &p=&p || *p=a
what u got from these all! YES i am telling about the pointers and sending their value into a function. watch this example and check the output:
#include<iostream> using namespace std; void reference(int*); void value(int); int main(){ int a=10; int b=10; reference(&a); value(a); return 0; } void reference(int *x){ cout<<x<<endl<<&x<<endl<<*x<<endl; } void value(int x){ x=30; cout<<endl<<&x<<endl<<x<<endl; }
_____________________________and outpute:
0x7ffff76fc6b0 0x7ffff76fc698 10
0x7ffff76fc69c 30
0 notes
Text
creating a Dynamic array with a pointer. looks cool
this little code text in C++ i wrote it before, i guess last year, first year in c++. within i create a pointer which address an array created instantly. and this array got a size, so we can change easily. look belove and enjoy it:
#include<iostream> using namespace std;
int main(){ int size; cout<<"Plealsse enter how big array you need: "; cin>>size;
int *array=new int[size];
for(int i=0;i<size;i++) cin>>array[i];
for(int i=0;i<size;i++) cout<<array[i];
delete[] array; return 0; }
0 notes
Text
do you want2find the sizeof your array??!
guys got an easy and must known way2find the size of array; guess HOW!!!
#include <iostream> using namespace std;
int main(){ int array[]={1,2,3,4,5,6,7,8,9,11,66,53,49,52,14,16,38,95}; int elemanSayisi=sizeof(array)/sizeof(array[0]); cout<<elemanSayisi<<endl;
return 0; }
0 notes
Text
read-only pointer
2nd of the day is king of read only pointer, another word;constant pointer constant data (or lets call it constant pointer and constant -initialized- variable)
#include<iostream> using namespace std; int main(){ int a=5; const int *const p=&a; cout<<a<<endl<<p<<endl<<*p<<endl<<&a<<endl; a=7; cout<<a<<endl<<p<<endl<<*p<<endl<<&a<<endl; int b=10; // *p=&b; if i create this kind of code, it does not execute. cose pointer is $ return 0; }
0 notes
Text
enumeration C++
ok guys to day early in the morning i wanted to share with you a useful detail. “ENUMERATION” shortly “enum”. well, what does it do then!!! whit it we create a part like a class and it involve elements which got automatic ID which start with 0 and goes each one after another +1.
a good example is this:
#include <iostream>
using namespace std;
enum week { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday };
int main() {
week today;
today = Wednesday;
cout << "Day " << today+1;
return 0; }
0 notes
Text
passing multi dimensional array to the Function
this example shows it really well:::>
do not forget; multidimensional array must have bounds for all dimensions except the first
0 notes