- Att betalningar som inte går igenom och håller på att omförsökas inte skickar en pushnotis/mail/sms till mig om att så är fallet.
- Att betalningar som inte går igenom och håller på att omförsökas inte kan flyttas till ett av mina andra konton som har täckning.
- Att e-faktura inte kan anmälas via mobilbanken.
- Att man inte kan fritextsöka på meddelanden eller kontonummer när man söker transaktioner utan bara datum och belopp.
- Att personen i kundsupportchatten tog 6 minuter mellan varje fråga och svar, och bara svarade på den första av mina frågor i en sammanklumpad frågemening.
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> | |
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00 "> | |
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | |
<rdf:Description rdf:about="" | |
xmlns:xmp="http://ns.adobe.com/xap/1.0/"> | |
<xmp:CreatorTool>Adobe Photoshop CS5 Macintosh</xmp:CreatorTool> | |
<xmp:CreateDate>2014-04-01T08:10:50+02:00</xmp:CreateDate> | |
<xmp:ModifyDate>2014-04-01T08:10:52+02:00</xmp:ModifyDate> | |
<xmp:MetadataDate>2014-04-01T08:10:52+02:00</xmp:MetadataDate> | |
</rdf:Description> |
Grupp för utvecklare på svenska. | |
• Inga Jobbannonser — se gruppen "Jobb för Kodapor". | |
• Läs och Googla innan du ber om hjälp. | |
• Använd sökfunktionen i gruppen innan du drar upp en gammal diskussion i en ny tråd |
# Basically the nginx configuration I use at konklone.com. | |
# I check it using https://www.ssllabs.com/ssltest/analyze.html?d=konklone.com | |
# | |
# To provide feedback, please tweet at @konklone or email eric@konklone.com. | |
# Comments on gists don't notify the author. | |
# | |
# Thanks to WubTheCaptain (https://wubthecaptain.eu) for his help and ciphersuites. | |
# Thanks to Ilya Grigorik (https://www.igvita.com) for constant inspiration. | |
server { |
# Basically the nginx configuration I use at konklone.com. | |
# I check it using https://www.ssllabs.com/ssltest/analyze.html?d=konklone.com | |
# | |
# To provide feedback, please tweet at @konklone or email eric@konklone.com. | |
# Comments on gists don't notify the author. | |
# | |
# Thanks to WubTheCaptain (https://wubthecaptain.eu) for his help and ciphersuites. | |
# Thanks to Ilya Grigorik (https://www.igvita.com) for constant inspiration. | |
server { |
# Basically the nginx configuration I use at konklone.com. | |
# I check it using https://www.ssllabs.com/ssltest/analyze.html?d=konklone.com | |
# | |
# To provide feedback, please tweet at @konklone or email eric@konklone.com. | |
# Comments on gists don't notify the author. | |
# | |
# Thanks to WubTheCaptain (https://wubthecaptain.eu) for his help and ciphersuites. | |
# Thanks to Ilya Grigorik (https://www.igvita.com) for constant inspiration. | |
server { |
#debian update issue
root@blueberry:/home/festiz# cat /etc/debian_version
6.0.7
root@blueberry:/home/festiz# aptitude update
Läs:1 http://ftp.se.debian.org stable Release.gpg [1 655 B]
One of the best ways to reduce complexity (read: stress) in web development is to minimize the differences between your development and production environments. After being frustrated by attempts to unify the approach to SSL on my local machine and in production, I searched for a workflow that would make the protocol invisible to me between all environments.
Most workflows make the following compromises:
-
Use HTTPS in production but HTTP locally. This is annoying because it makes the environments inconsistent, and the protocol choices leak up into the stack. For example, your web application needs to understand the underlying protocol when using the
secure
flag for cookies. If you don't get this right, your HTTP development server won't be able to read the cookies it writes, or worse, your HTTPS production server could pass sensitive cookies over an insecure connection. -
Use production SSL certificates locally. This is annoying
#teamroster { | |
overflow: hidden; | |
@media (min-width: 600px) { | |
.team-display { | |
float: left; | |
overflow: hidden; | |
width: 30.3333333%; | |
margin-right: 1.5%; | |
min-width: 30%; |
class AddFlagsToHuman < ActiveRecord::Migration | |
def change | |
# Add the flags | |
add_column :humen, :signed_up, :boolean, default: false | |
add_column :humen, :welcome_email_sent, :boolean, default: false | |
# Set the flags values | |
reversible do |dir| | |
dir.up do | |
Humen.all.select(&:signed_up?).each do |human| |